sasalka/Code/Player/Dedugan.Animations.cs
2025-05-28 17:15:12 +03:00

16 lines
245 B
C#

using Sandbox;
public sealed partial class Dedugan
{
void UpdateCustomAnimations()
{
if ( Network.IsOwner )
{
// IsDancing = Input.Down( "Dance" );
}
Log.Info(IsDancing);
Renderer.Set( "test_dance", IsDancing );
}
}