mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 06:17:58 +01:00
72 lines
1.8 KiB
C#
72 lines
1.8 KiB
C#
using Fie.Object;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.Enemies.HoovesRaces.ChangelingAlpha
|
|
{
|
|
public class FieStateMachineEnemiesChangelingAlphaMove : FieStateMachineGameCharacterBase
|
|
{
|
|
private const float MOVE_THRESHOLD = 0.02f;
|
|
|
|
private const float WALK_FORCE_THRESHOLD = 0.3f;
|
|
|
|
private const float WALK_MOVESPEED_MAGNI = 0.25f;
|
|
|
|
private bool _isEnd;
|
|
|
|
private Type _nextState;
|
|
|
|
public override void updateState<T>(ref T gameCharacter)
|
|
{
|
|
if (gameCharacter is FieChangelingAlpha)
|
|
{
|
|
Vector3 externalInputVector = gameCharacter.externalInputVector;
|
|
externalInputVector.z = externalInputVector.y * 0.5f;
|
|
externalInputVector.y = 0f;
|
|
Vector3 velocity = gameCharacter.GetComponent<Rigidbody>().velocity;
|
|
float num = Math.Abs(velocity.x);
|
|
float num2 = num / 5f;
|
|
float defaultMoveSpeed = gameCharacter.getDefaultMoveSpeed();
|
|
float timescale = Mathf.Min(Mathf.Max(num2 / 0.1f, 0.25f), 1.5f);
|
|
gameCharacter.animationManager.SetAnimation(1, isLoop: true);
|
|
gameCharacter.animationManager.SetAnimationTimescale(1, timescale);
|
|
defaultMoveSpeed *= 0.25f;
|
|
gameCharacter.addMoveForce(externalInputVector * (defaultMoveSpeed * gameCharacter.externalInputForce), 0.4f);
|
|
}
|
|
}
|
|
|
|
public override void initialize(FieGameCharacter gameCharacter)
|
|
{
|
|
if (!(gameCharacter == null))
|
|
{
|
|
gameCharacter.isEnableAutoFlip = true;
|
|
}
|
|
}
|
|
|
|
public override void terminate(FieGameCharacter gameCharacter)
|
|
{
|
|
if (!(gameCharacter == null))
|
|
{
|
|
gameCharacter.isEnableAutoFlip = false;
|
|
}
|
|
}
|
|
|
|
public override bool isEnd()
|
|
{
|
|
return _isEnd;
|
|
}
|
|
|
|
public override Type getNextState()
|
|
{
|
|
return _nextState;
|
|
}
|
|
|
|
public override List<Type> getAllowedStateList()
|
|
{
|
|
List<Type> list = new List<Type>();
|
|
list.Add(typeof(FieStateMachineAnyConsider));
|
|
return list;
|
|
}
|
|
}
|
|
}
|