Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created April 2, 2018 10:48
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 tsubaki/3f5fd53d667d0cdfcde61c9d226a27b5 to your computer and use it in GitHub Desktop.
Save tsubaki/3f5fd53d667d0cdfcde61c9d226a27b5 to your computer and use it in GitHub Desktop.
ECSサンプル、ECS化前
using UnityEngine;
public class Counter : MonoBehaviour
{
public int count;
void Update ()
{
count++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment