sasalka/Code/Player/Dedugan.Animations.cs
2025-06-08 23:43:22 +03:00

13 lines
203 B
C#

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