Created
June 30, 2018 12:33
-
-
Save todorok1/ae8f5e7df8d5a3bb4dec6ed5c6b92b61 to your computer and use it in GitHub Desktop.
同じコンポーネントを複数アタッチ
This file contains 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
[DisallowMultipleComponent] | |
public class MultipleComponentTest : MonoBehaviour { | |
void Start(){ | |
gameObject.AddComponent<MultipleComponentTest>(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment