Using Components 使用组件Unity Manual User Guide Building Scenes Using Components Unity 手册 -用户指南-建立场景-使用组件Components are the nuts 假定你正在编写 Script B, 你想要进行一个引用 Script A,它是连接同样的 GameObject。你应当必须使用GetComponent()去进行这个引用。在 Script B 里,你应当简单书写: scriptA = GetComponent(“ScriptA“); Then you would be able access any of the Script A variables by writing scriptA.variableName within Script B. For more help with using GetComponent(), take a look at the GetComponent() Script Reference page. 然后你将能访问任何 Script A 的变量,通过书写 scriptA.variableName 在 Script B 里。更过使用GetComponent()帮组,查看 GetComponent() 脚本引用页。