Files
ichni_Creator_Studio/Assets/Feel/MMTools/Demos/MMObservable/MMObservableDemoObserver.cs
SoulliesOfficial 8d0abec75f 基础内容
必要插件安装
缓动曲线和动画基础
ElementFolder,Track与其次级模块,PathNode重构
2025-01-26 21:10:16 -05:00

40 lines
1.1 KiB
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace MoreMountains.Tools
{
/// <summary>
/// A test class used to demonstrate the MMObservable in the MMObservableTest demo scene
/// </summary>
[AddComponentMenu("")]
public class MMObservableDemoObserver : MonoBehaviour
{
/// the subject to look at
public MMObservableDemoSubject TargetSubject;
/// <summary>
/// When the position changes, we move our object accordingly on the y axis
/// </summary>
protected virtual void OnPositionChange()
{
this.transform.position = this.transform.position.MMSetY(TargetSubject.PositionX.Value);
}
/// <summary>
/// On enable we start listening for changes
/// </summary>
protected virtual void OnEnable()
{
TargetSubject.PositionX.OnValueChanged += OnPositionChange;
}
/// <summary>
/// On enable we stop listening for changes
/// </summary>
protected virtual void OnDisable()
{
TargetSubject.PositionX.OnValueChanged -= OnPositionChange;
}
}
}