Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / activity / role / player / PlayerRoleState.cs
@小李xl 小李xl on 23 Nov 2023 348 bytes 添加敌人属性表

public class PlayerRoleState : RoleState
{
    /// <summary>
    /// 翻滚速度
    /// </summary>
    public float RollSpeed = 400f;

    /// <summary>
    /// 翻滚持续时间
    /// </summary>
    public float RollTime = 0.15f;
    
    /// <summary>
    /// 翻滚冷却时间
    /// </summary>
    public float RollCoolingTime = 0.5f;
}