using UnityEngine; using System.Collections; using uc; public class TemplateActivity : Activity { private void Start() { } protected override void OnEnter() { } protected override void OnUpdate() { base.OnUpdate(); if (IsEntering == false) return; } protected override void OnLeave() { base.OnLeave(); } protected override void OnKilled() { base.OnKilled(); } }