Last active
August 29, 2015 14:07
-
-
Save takashicompany/44b191f03382ecd0d6c9 to your computer and use it in GitHub Desktop.
静的コンストラクタのサンプルコード
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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