概要
using System; using UniRx; using UnityEngine; public sealed class Hoge : IDisposable { public void Dispose() { Debug.Log( "ピカチュウ" ); } } public class Example : MonoBehaviour { private void Awake() { new Hoge().AddTo( gameObject ); } }
AddTo 拡張メソッドを使用する