diff options
| author | Sarah B <git@sarahduck.ca> | 2024-01-21 23:44:53 -0800 |
|---|---|---|
| committer | Sarah B <git@sarahduck.ca> | 2024-01-21 23:44:53 -0800 |
| commit | 5be6cc2168c4efe5f72f5b9ef52ca48c26523bc2 (patch) | |
| tree | 62792bf2e7fca02ea0037d58382cec9a00a3c08f /OnekoNet.cs | |
| parent | 163a2f1a1076d518b04ee37911bdd40afe8b9b2c (diff) | |
Ported to Raylib-cs 6
Diffstat (limited to 'OnekoNet.cs')
| -rw-r--r-- | OnekoNet.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OnekoNet.cs b/OnekoNet.cs index 4a01ec8..6b84805 100644 --- a/OnekoNet.cs +++ b/OnekoNet.cs @@ -37,8 +37,8 @@ class OnekoNet : Oneko public override void Update(float delta) { NetworkIssueTimer += delta; - if (NetworkIssueTimer < 0.6f) ColorTint = Color.WHITE; - else ColorTint = Color.WHITE with {A = 120}; + if (NetworkIssueTimer < 0.6f) ColorTint = Color.White; + else ColorTint = Color.White with {A = 120}; } public static void SpawnNetNeko(ClientUser user) |
