Skip to content

Instantly share code, notes, and snippets.

@taross-f
Last active September 14, 2015 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taross-f/e38d3169f7063ccb87b4 to your computer and use it in GitHub Desktop.
Save taross-f/e38d3169f7063ccb87b4 to your computer and use it in GitHub Desktop.
Unity-C# Script Template
using UnityEngine;
using System;
using System.Collections.Generic;
using UniRx;
using UniRx.Triggers;
using UniLinq;
public class #SCRIPTNAME# : MonoBehaviour {
void Start() {
this.UpdateAsObservable()
.Subscribe(_ =>
{
})
.AddTo(gameObject);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment