40 lines
913 B
C#
40 lines
913 B
C#
// ***********************************************************************
|
|
// Assembly : Game
|
|
// Author : Kimch
|
|
// Created : 2020-05-20
|
|
// Description :
|
|
// Last Modified By :
|
|
// Last Modified On :
|
|
// ***********************************************************************
|
|
// <copyright file= "Cha_AnimationEvent" company="DefaultCompany"></copyright>
|
|
// <summary></summary>
|
|
// ***********************************************************************
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
namespace G
|
|
{
|
|
//using World;
|
|
|
|
public class Cha_AnimationEvent : MonoBehaviour
|
|
{
|
|
EntityMainPlayer script_cha;
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
script_cha = EntityMainPlayer.Instance;
|
|
}
|
|
|
|
void StepOn()
|
|
{
|
|
script_cha.StepOn();
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|