-
-
Save todorok1/828c21aca44fc1f58be500cda028c6da to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第87回 条件とイベントの画像の対応を保持するクラス
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using UnityEngine; | |
| namespace SimpleRpg | |
| { | |
| /// <summary> | |
| /// 条件とイベントの画像の対応を保持するクラスです。 | |
| /// </summary> | |
| public class EventGraphicRecord : MonoBehaviour | |
| { | |
| /// <summary> | |
| /// 対応する画像やアニメーターを表示するイベントページです。 | |
| /// </summary> | |
| public List<EventPage> eventPages; | |
| /// <summary> | |
| /// 条件に対応する画像です。 | |
| /// </summary> | |
| public Sprite sprite; | |
| /// <summary> | |
| /// 条件に対応するアニメーターです。 | |
| /// </summary> | |
| public RuntimeAnimatorController animatorController; | |
| /// <summary> | |
| /// アニメーターを止めるかどうかのフラグです。 | |
| /// </summary> | |
| public bool isStopAnimator; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment