예제 #1
0
파일: Sol.cs 프로젝트: AkliDev/CuhrayzeeBtu
 public void OnEnter()
 {
     _Player.SetAnimation(AnimationState.Idle);
 }
예제 #2
0
파일: Sol.cs 프로젝트: AkliDev/CuhrayzeeBtu
 public void OnEnter()
 {
     _Player.SetAnimation(AnimationState.Falling);
 }
예제 #3
0
파일: Sol.cs 프로젝트: AkliDev/CuhrayzeeBtu
 public void OnEnter()
 {
     _Player.SetAnimation(AnimationState.B_Walk);
 }
예제 #4
0
파일: Sol.cs 프로젝트: AkliDev/CuhrayzeeBtu
 public void OnEnter()
 {
     _Player.SetAnimation(AnimationState.F_Walk);
     _Player._Velocity = new Vector2(-_Player._MoveSpeed, _Player._Velocity.y);
 }
예제 #5
0
파일: Sol.cs 프로젝트: AkliDev/CuhrayzeeBtu
 public void OnEnter()
 {
     _Player.SetAnimation(AnimationState.Crouch);
     _Player._Velocity.x = 0;
 }
예제 #6
0
 public void OnEnter()
 {
     _Player.SetAnimation(AnimationState.Crouch);
 }