mirror of
https://github.com/ApfelTeeSaft/Slender.git
synced 2026-08-27 03:43:28 +00:00
22 lines
307 B
C#
22 lines
307 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class CharacterMotorSliding
|
|
{
|
|
public bool enabled;
|
|
|
|
public float slidingSpeed;
|
|
|
|
public float sidewaysControl;
|
|
|
|
public float speedControl;
|
|
|
|
public CharacterMotorSliding()
|
|
{
|
|
enabled = true;
|
|
slidingSpeed = 15f;
|
|
sidewaysControl = 1f;
|
|
speedControl = 0.4f;
|
|
}
|
|
}
|