Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Closetarget | root or any of its children. |
recursive | Binds also the target's children transform properties when set to true . |
componentType | Type of the component. |
Adds bindings for all the properties of the first component of type T found in target, and also for all the target's children if recursive is true
.
#pragma strict public class BindComponentScript extends MonoBehaviour { function Start() { var recorder: var = new GameObjectRecorder(); recorder.root = gameObject; // Add bindings for all the properties of the Transform and BoxCollider components. recorder.BindComponent.<Transform>(gameObject, false); recorder.BindComponent.<BoxCollider>(gameObject, false); } }
using UnityEngine; using UnityEditor; using UnityEditor.Experimental.Animations;
public class BindComponentScript : MonoBehaviour { void Start() { var recorder = new GameObjectRecorder(); recorder.root = gameObject;
// Add bindings for all the properties of the Transform and BoxCollider components. recorder.BindComponent<Transform>(gameObject, false); recorder.BindComponent<BoxCollider>(gameObject, false); } }
It is also possible to use the non-generic method, in which case typeof()
will get the Type of the component.
This example gets exactly the same result as the example above:
#pragma strict public class BindComponentNonGenericScript extends MonoBehaviour { function Start() { var recorder: var = new GameObjectRecorder(); recorder.root = gameObject; recorder.BindComponent(gameObject, Transform, false); recorder.BindComponent(gameObject, BoxCollider, false); } }
using UnityEngine; using UnityEditor; using UnityEditor.Experimental.Animations;
public class BindComponentNonGenericScript : MonoBehaviour { void Start() { var recorder = new GameObjectRecorder(); recorder.root = gameObject;
recorder.BindComponent(gameObject, typeof(Transform), false); recorder.BindComponent(gameObject, typeof(BoxCollider), false); } }
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information