Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / activity / role / player / PlayerRoleState.cs
@小李xl 小李xl on 30 Jan 2024 348 bytes 制作weapon0013, 添加金币吸引效果
  1.  
  2. public class PlayerRoleState : RoleState
  3. {
  4. /// <summary>
  5. /// 翻滚速度
  6. /// </summary>
  7. public float RollSpeed = 170f;
  8.  
  9. /// <summary>
  10. /// 翻滚持续时间
  11. /// </summary>
  12. public float RollTime = 0.15f;
  13. /// <summary>
  14. /// 翻滚冷却时间
  15. /// </summary>
  16. public float RollCoolingTime = 0.2f;
  17. }