12345678910111213141516171819202122232425 |
- using System;
- using UnityEngine;
- namespace SchoenLogger.Sample
- {
- [Serializable]
- public class SampleCondition : Condition
- {
- public enum MovementType
- {
- randomMovement,
- fastRandomMovement
- }
-
- [SerializeField]
- public MovementType movement;
- public SampleCondition() { }
- public SampleCondition(MovementType movementType)
- {
- movement = movementType;
- }
- }
- }
|