shaoxiadiablo/Assets/AGame/Scripts/Game/Entity/Cha_AnimationEvent.cs

40 lines
913 B
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// 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()
{
}
}
}