22 lines
329 B
C#
22 lines
329 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class CharacterMotorSlidingINFINIGRASS
|
|
{
|
|
public bool enabled;
|
|
|
|
public float slidingSpeed;
|
|
|
|
public float sidewaysControl;
|
|
|
|
public float speedControl;
|
|
|
|
public CharacterMotorSlidingINFINIGRASS()
|
|
{
|
|
enabled = true;
|
|
slidingSpeed = 15f;
|
|
sidewaysControl = 1f;
|
|
speedControl = 0.4f;
|
|
}
|
|
}
|