From 5be6cc2168c4efe5f72f5b9ef52ca48c26523bc2 Mon Sep 17 00:00:00 2001 From: Sarah B Date: Sun, 21 Jan 2024 23:44:53 -0800 Subject: Ported to Raylib-cs 6 --- OnekoNet.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OnekoNet.cs') 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) -- cgit