Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created June 19, 2017 13:44
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/9894a3317637edab1c382caaf1658178 to your computer and use it in GitHub Desktop.
Save tsubaki/9894a3317637edab1c382caaf1658178 to your computer and use it in GitHub Desktop.
ResettableScriptableObject前提のカウンター
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu]
public class ClickCount : ResettableScriptableObject
{
public int count;
public void Add()
{
count ++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment