Skip to content

Instantly share code, notes, and snippets.

@takashicompany
Last active August 29, 2015 14:07
Show Gist options
  • Save takashicompany/44b191f03382ecd0d6c9 to your computer and use it in GitHub Desktop.
Save takashicompany/44b191f03382ecd0d6c9 to your computer and use it in GitHub Desktop.
静的コンストラクタのサンプルコード
public class StaticConstructorSample
{
static void StaticConstructorSample()
{
// 初期化処理
}
public static void Execute()
{
// 実行処理
}
}
public class MyObject : MonoBehaviour
{
void Awake()
{
// StaticConstructorSampleのコンストラクタが実行されてから、Executeがコールされる
StaticConstructorSample.Execute();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment