1.0.4 • Published 7 years ago

@umm/singleton_monobehaviour v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

What?

  • 任意の MonoBehaviour に Singleton にアクセス出来るフィールドを提供します

Why?

  • シーンを跨いでアクセスしたりするコンポーネントが少なからず存在していたので実装しました

Install

$ npm install github:umm-projects/singleton_monobehaviour.git

Usage

public class Hoge : SingletonMonoBehaviour<Hoge> {

    public string Fuga() {
        return "Fuga!!!";
    }

}

public class Fuga {

    public void Piyo() {
        Debug.Log(Hoge.Instance.Fuga());
    }

}

License

Copyright (c) 2017 Tetsuya Mori

Released under the MIT license, see LICENSE.txt