Class: ConeCollider
extend:
transform
Import example:
import { physics } from "cc";
const { ConeCollider } = physics;
Cone collider component.
Index
Constructors
-
ConeCollider
public
Properties
-
radius
public
Gets or sets the radius of the circle on the cone body, in local space.
-
height
public
Gets or sets the cone body is at the corresponding axial height, in local space.
-
direction
public
Gets or sets the cone direction, in local space.
-
_direction
protected
-
_height
protected
-
_radius
protected
Inherited Properties
-
worldBounds
public
-
uuid
public
The uuid for editor.
-
sharedMaterial
public
Gets or sets the physical material for this collider.
-
shape
public
-
replicated
public
-
needTriggerEvent
public
-
needCollisionEvent
public
-
name
public
-
material
public
Gets or sets the physics material for this collider, which in Shared state will generate a new instance.
-
isValid
public
Indicates whether the object is not yet destroyed. (It will not be available after being destroyed)
When an object's destroy is called, it is actually destroyed after the end of this frame.So isValid will return false from the next frame, while isValid in the current frame will still be true.If you want to determine whether the current frame has called destroy, use isValid(obj, true),but this is often caused by a particular logical requirements, which is not normally required.
When an object's destroy is called, it is actually destroyed after the end of this frame.So isValid will return false from the next frame, while isValid in the current frame will still be true.If you want to determine whether the current frame has called destroy, use isValid(obj, true),but this is often caused by a particular logical requirements, which is not normally required.
-
isTrigger
public
Gets or sets the collider is trigger, this will be always trigger if using builtin.
-
hideFlags
public
After inheriting CCObject objects, control whether you need to hide, lock, serialize, and other functions.
-
enabledInHierarchy
public
Indicates whether this component is enabled and its node is also active in the hierarchy.
-
enabled
public
Indicates whether this component is enabled or not.
-
center
public
Gets or sets the center of the collider, in local space.
-
boundingSphere
public
-
attachedRigidBody
public
Get the rigid body component to which the collider is bound, possibly null.
-
type
public
-
node
public
The node this component is attached to. A component is always attached to a node.
-
__editorExtras__
protected
-
__prefab
protected
-
_aabb
protected
-
_boundingSphere
protected
-
_center
protected
-
_enabled
protected
-
_id
protected
-
_isSharedMaterial
protected
-
_isTrigger
protected
-
_material
protected
-
_name
protected
-
_needCollisionEvent
protected
-
_needTriggerEvent
protected
-
_objFlags
protected
-
_sceneGetter
protected
-
_shape
protected
-
__scriptAsset
protected
-
_isInitialized
protected
-
_isOnLoadCalled
protected
Returns a value which used to indicate the onLoad get called or not.
Inherited Methods
-
unscheduleAllCallbacks
public
unschedule all scheduled tasks.
-
unschedule
public
Un-schedules a custom task.
-
targetOff
public
Removes all callbacks previously registered with the same target (passed as parameter).This is not for removing all listeners in the current event target,and this is not for removing all listeners the target parameter have registered.It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter.
-
setMask
public
Sets the mask value.
-
setGroup
public
Sets the group value.
-
scheduleOnce
public
Use Scheduler system to schedule a task that runs only once, with a delay of 0 or larger.
-
schedule
public
Use Scheduler system to schedule a custom task.
If the task is already scheduled, then the interval parameter will be updated without scheduling it again.
If the task is already scheduled, then the interval parameter will be updated without scheduling it again.
-
resetInEditor
public
Called to initialize the component or node’s properties when adding the component the first time or when the Reset command is used.This function is only called in editor.
-
removeMask
public
Subtract the mask value to fill in the group that does not need to be checked.
-
removeGroup
public
Subtract the grouping value to fill in the group to be removed.
-
removeAll
public
Removes all registered events of the specified target or type.
-
once
public
Registers a callback associated with a trigger or collision event, which is automatically unregistered once executed.
-
onLostFocusInEditor
public
-
onFocusInEditor
public
-
on
public
Registers callbacks associated with triggered or collision events.
-
off
public
Unregisters callbacks associated with trigger or collision events that have been registered.
-
hasEventListener
public
Checks whether there is correspond event listener registered on the given event.
-
getMask
public
Gets the mask value.
-
getGroup
public
Gets the group value.
-
getComponentsInChildren
public
Returns all components of supplied type in self or any of its children.
-
getComponents
public
Returns all components of supplied type in the node.
-
getComponentInChildren
public
Returns the component of supplied type in any of its children using depth first search.
-
getComponent
public
Returns the component of supplied type if the node has one attached, null if it doesn't.
You can also get component in the node by passing in the name of the script.
You can also get component in the node by passing in the name of the script.
-
emit
public
Trigger an event directly with the event name and necessary arguments.
-
destroy
public
-
addMask
public
Add mask values to fill in groups that need to be checked.
-
addGroup
public
Add a grouping value to fill in the group you want to join.
-
addComponent
public
Adds a component class to the node. You can also add component to node by passing in the name of the script.
-
__preload
protected
__preload is called before every onLoad.
It is used to initialize the builtin components internally,
to avoid checking whether onLoad is called before every public method calls.
This method should be removed if script priority is supported.
It is used to initialize the builtin components internally,
to avoid checking whether onLoad is called before every public method calls.
This method should be removed if script priority is supported.
-
_destroyImmediate
protected
-
_destruct
protected
Clear all references in the instance.NOTE: this method will not clear the getter or setter functions which defined in the instance of CCObject.
-
_getLocalBounds
protected
If the component's bounding box is different from the node's, you can implement this method to supplya custom axis aligned bounding box (AABB), so the editor's scene view can perform hit test properly.
-
_getRenderScene
protected
-
_instantiate
protected
-
_onPreDestroy
protected
-
lateUpdate
protected
LateUpdate is called every frame, if the Component is enabled.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
-
onDestroy
protected
-
onDisable
protected
-
onEnable
protected
-
onLoad
protected
-
onRestore
protected
onRestore is called after the user clicks the Reset item in the Inspector's context menu or performsan undo operation on this component.
If the component contains the "internal state", short for "temporary member variables which not included
in its CCClass properties", then you may need to implement this function.
The editor will call the getset accessors of your component to record/restore the component's state
for undo/redo operation. However, in extreme cases, it may not works well. Then you should implement
this function to manually synchronize your component's "internal states" with its public properties.
Once you implement this function, all the getset accessors of your component will not be called when
the user performs an undo/redo operation. Which means that only the properties with default value
will be recorded or restored by editor.
Similarly, the editor may failed to reset your component correctly in extreme cases. Then if you need
to support the reset menu, you should manually synchronize your component's "internal states" with its
properties in this function. Once you implement this function, all the getset accessors of your component
will not be called during reset operation. Which means that only the properties with default value
will be reset by editor.This function is only called in editor mode.
If the component contains the "internal state", short for "temporary member variables which not included
in its CCClass properties", then you may need to implement this function.
The editor will call the getset accessors of your component to record/restore the component's state
for undo/redo operation. However, in extreme cases, it may not works well. Then you should implement
this function to manually synchronize your component's "internal states" with its public properties.
Once you implement this function, all the getset accessors of your component will not be called when
the user performs an undo/redo operation. Which means that only the properties with default value
will be recorded or restored by editor.
Similarly, the editor may failed to reset your component correctly in extreme cases. Then if you need
to support the reset menu, you should manually synchronize your component's "internal states" with its
properties in this function. Once you implement this function, all the getset accessors of your component
will not be called during reset operation. Which means that only the properties with default value
will be reset by editor.This function is only called in editor mode.
-
start
protected
Called before all scripts' update if the Component is enabled the first time.
Usually used to initialize some logic which need to be called after all components' onload methods called.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
Usually used to initialize some logic which need to be called after all components' onload methods called.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
-
update
protected
Update is called every frame, if the Component is enabled.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
Details
Constructors
public ConeCollider () : ConeCollider
Returns: ConeCollider
Properties
public radius : number
Gets or sets the radius of the circle on the cone body, in local space.
public height : number
Gets or sets the cone body is at the corresponding axial height, in local space.
public direction : _parsePolygonBoundingBox
Gets or sets the cone direction, in local space.
Inherited Properties
public worldBounds : Readonly < AABB >
Inherited from: Collider.worldBounds
The uuid for editor.
example
import { log } from 'cc';
log(comp.uuid);
Defined in
cocos/core/components/component.ts:92
:
Gets or sets the physical material for this collider.
public shape : IConeShape
Defined in
cocos/core/data/object.ts:248
Defined in
cocos/core/components/component.ts:62
Gets or sets the physics material for this collider, which in Shared state will generate a new instance.
Indicates whether the object is not yet destroyed. (It will not be available after being destroyed)
When an object's `destroy` is called, it is actually destroyed after the end of this frame. So `isValid` will return false from the next frame, while `isValid` in the current frame will still be true. If you want to determine whether the current frame has called `destroy`, use `isValid(obj, true)`, but this is often caused by a particular logical requirements, which is not normally required.
When an object's `destroy` is called, it is actually destroyed after the end of this frame. So `isValid` will return false from the next frame, while `isValid` in the current frame will still be true. If you want to determine whether the current frame has called `destroy`, use `isValid(obj, true)`, but this is often caused by a particular logical requirements, which is not normally required.
example
import { Node, log } from 'cc';
const node = new Node();
log(node.isValid); // true
node.destroy();
log(node.isValid); // true, still valid in this frame
// after a frame...
log(node.isValid); // false, destroyed in the end of last frame
Defined in
cocos/core/data/object.ts:285
Gets or sets the collider is trigger, this will be always trigger if using builtin.
After inheriting CCObject objects, control whether you need to hide, lock, serialize, and other functions.
Defined in
cocos/core/data/object.ts:240
Indicates whether this component is enabled and its node is also active in the hierarchy.
example
import { log } from 'cc';
log(comp.enabledInHierarchy);
Defined in
cocos/core/components/component.ts:143
Indicates whether this component is enabled or not.
example
import { log } from 'cc';
comp.enabled = true;
log(comp.enabled);
Defined in
cocos/core/components/component.ts:116
public center : Vec3
Inherited from: Collider.center
Gets or sets the center of the collider, in local space.
Get the rigid body component to which the collider is bound, possibly null.
public node : Node
default: NullNode
Inherited from: Collider.node
The node this component is attached to. A component is always attached to a node.
example
import { log } from 'cc';
log(comp.node);
Defined in
cocos/core/components/component.ts:175
protected __editorExtras__ : unknown
Inherited from: Collider.__editorExtras__
Defined in
cocos/core/data/object.ts:196
Defined in
cocos/core/components/component.ts:187
protected _center : Vec3
readonly
Inherited from: Collider._center
protected _enabled : boolean
default: true
deprecated
Inherited from: setMaxCount
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
Defined in
cocos/core/components/component.ts:181
protected _id : string
deprecated
Inherited from: Collider._id
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
Defined in
cocos/core/components/component.ts:198
:
Defined in
cocos/core/data/object.ts:202
Defined in
cocos/core/data/object.ts:201
protected _sceneGetter : null | (
() => _cachedCurrentTime
) default: null
Inherited from: Collider._sceneGetter
Defined in
cocos/core/components/component.ts:192
protected __scriptAsset : null
deprecated
Inherited from: Collider.__scriptAsset
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
Defined in
cocos/core/components/component.ts:103
protected _isOnLoadCalled : number
deprecated
Inherited from: Collider._isOnLoadCalled
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
Returns a value which used to indicate the onLoad get called or not.
example
import { log } from 'cc';
log(this._isOnLoadCalled > 0);
Defined in
cocos/core/components/component.ts:159
Inherited Methods
public unscheduleAllCallbacks () : void
Inherited from: Collider.unscheduleAllCallbacks
unschedule all scheduled tasks.
Returns: void
example
this.unscheduleAllCallbacks();
Defined in
cocos/core/components/component.ts:490
Inherited from: Collider.unschedule
Un-schedules a custom task.
Input Parameters
Name | Type | Description |
---|---|---|
callback_fn | any | The callback function of the task |
Returns: void
example
this.unschedule(_callback);
Defined in
cocos/core/components/component.ts:474
Inherited from: Collider.targetOff
Removes all callbacks previously registered with the same target (passed as parameter).
This is not for removing all listeners in the current event target,
and this is not for removing all listeners the target parameter have registered.
It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter.
Input Parameters
Name | Type | Description |
---|---|---|
typeOrTarget | any | The target to be searched for all related listeners |
Returns: void
Inherited from: Collider.setMask
Sets the mask value.
Inherited from: T
Sets the group value.
Inherited from: Collider.scheduleOnce
Use Scheduler system to schedule a task that runs only once, with a delay of 0 or larger.
Defined in
cocos/core/components/component.ts:461
Inherited from: RectangleBoundingBoxData
Use Scheduler system to schedule a custom task.
If the task is already scheduled, then the interval parameter will be updated without scheduling it again.
If the task is already scheduled, then the interval parameter will be updated without scheduling it again.
Input Parameters
Name | Type | Description |
---|---|---|
callback | any | The callback function of the task |
interval | number | The time interval between each invocation |
repeat | number | The repeat count of this task, the task will be invoked (repeat + 1) times, use [[23290]] to repeat a task forever |
delay | number | The delay time for the first invocation, Unit: s |
Returns: void
example
import { log } from 'cc';
this.schedule((dt) => void log(`time: ${dt}`), 1);
Defined in
cocos/core/components/component.ts:428
public resetInEditor () : void
Inherited from: Collider.resetInEditor
Called to initialize the component or node’s properties when adding the component the first time or when the Reset command is used.
This function is only called in editor.
Returns: void
Defined in
cocos/core/components/component.ts:592
Inherited from: Collider.removeMask
Subtract the mask value to fill in the group that does not need to be checked.
Inherited from: Collider.removeGroup
Subtract the grouping value to fill in the group to be removed.
public removeAll (typeOrTarget : Record < string, unknown > | TriggerEventType | _rawTextureAtlases) : void
Inherited from: Collider.removeAll
Removes all registered events of the specified target or type.
Input Parameters
Name | Type | Description |
---|---|---|
typeOrTarget | Record < string, unknown > | TriggerEventType | _rawTextureAtlases | The event type or target. |
Returns: void
public once <TFunction extends > (type : TriggerEventType | _rawTextureAtlases, callback : toString, target ?: any) : any
Inherited from: hashCode
Registers a callback associated with a trigger or collision event, which is automatically unregistered once executed.
Input Parameters
Name | Type | Description |
---|---|---|
type | TriggerEventType | _rawTextureAtlases | The event type, onTriggerEnter|onTriggerStay|onTriggerExit|onCollisionEnter|onCollisionStay|onCollisionExit; |
callback | toString | The event callback, signature:`(event?:ICollisionEvent|ITriggerEvent)=>void`. |
target | any | The event callback target. |
Returns: any
Defined in
cocos/core/components/component.ts:585
Defined in
cocos/core/components/component.ts:583
public on <TFunction extends > (type : TriggerEventType | _rawTextureAtlases, callback : BaseObject, target ?: any, once ?: boolean) : any
Inherited from: Collider.on
Registers callbacks associated with triggered or collision events.
Input Parameters
Name | Type | Description |
---|---|---|
type | TriggerEventType | _rawTextureAtlases | The event type, onTriggerEnter|onTriggerStay|onTriggerExit|onCollisionEnter|onCollisionStay|onCollisionExit; |
callback | BaseObject | The event callback, signature:`(event?:ICollisionEvent|ITriggerEvent)=>void`. |
target | any | The event callback target. |
once | boolean | - |
Returns: any
Inherited from: boundingBox
Unregisters callbacks associated with trigger or collision events that have been registered.
Input Parameters
Name | Type | Description |
---|---|---|
type | TriggerEventType | _rawTextureAtlases | The event type, onTriggerEnter|onTriggerStay|onTriggerExit|onCollisionEnter|onCollisionStay|onCollisionExit; |
callback | The event callback, signature:`(event?:ICollisionEvent|ITriggerEvent)=>void`. | |
target | any | The event callback target. |
Returns: void
public getComponentsInChildren <T extends _updateTargetTexture> (classConstructor : Constructor < T >) : T []
Inherited from: Collider.getComponentsInChildren
Returns all components of supplied type in self or any of its children.
Input Parameters
Name | Type | Description |
---|---|---|
classConstructor | Constructor < T > | The class of components to be retrieved |
Returns: T []
example
import { Sprite } from 'cc';
const sprites = node.getComponentsInChildren(Sprite);
Inherited from: Collider.getComponentsInChildren
Returns all components of supplied type in self or any of its children.
Input Parameters
Name | Type | Description |
---|---|---|
className | string | A string for the class name of the components |
Returns: _updateTargetTexture []
example
const tests = node.getComponentsInChildren("Test");
Defined in
cocos/core/components/component.ts:342
Inherited from: containsPoint
Returns all components of supplied type in the node.
Input Parameters
Name | Type | Description |
---|---|---|
classConstructor | Constructor < T > | The class of components to be retrieved |
Returns: T []
example
import { Sprite } from 'cc';
const sprites = node.getComponents(Sprite);
Inherited from: Collider.getComponents
Returns all components of supplied type in the node.
Input Parameters
Name | Type | Description |
---|---|---|
className | string | A string for the class name of the components |
Returns: _updateTargetTexture []
example
const tests = node.getComponents("Test");
Defined in
cocos/core/components/component.ts:288
public getComponentInChildren <T extends _updateTargetTexture> (classConstructor : Constructor < T >) : null | T
Inherited from: Collider.getComponentInChildren
Returns the component of supplied type in any of its children using depth first search.
Input Parameters
Name | Type | Description |
---|---|---|
classConstructor | Constructor < T > | The class of component to be retrieved |
Returns: null | T
example
import { Sprite } from 'cc';
const sprite = node.getComponentInChildren(Sprite);
Inherited from: Collider.getComponentInChildren
Returns the component of supplied type in any of its children using depth first search.
Input Parameters
Name | Type | Description |
---|---|---|
className | string | A string for the class name of the component |
Returns: null | _updateTargetTexture
example
var Test = node.getComponentInChildren("Test");
Defined in
cocos/core/components/component.ts:315
public getComponent <T extends _updateTargetTexture> (classConstructor : Constructor < T >) : null | T
Inherited from: type
Returns the component of supplied type if the node has one attached, null if it doesn't.
You can also get component in the node by passing in the name of the script.
You can also get component in the node by passing in the name of the script.
Input Parameters
Name | Type | Description |
---|---|---|
classConstructor | Constructor < T > | The class of component to be retrieved or to be created |
Returns: null | T
example
import { Sprite } from 'cc';
// get sprite component.
var sprite = node.getComponent(Sprite);
Inherited from: height
Returns the component of supplied type if the node has one attached, null if it doesn't.
You can also get component in the node by passing in the name of the script.
You can also get component in the node by passing in the name of the script.
Input Parameters
Name | Type | Description |
---|---|---|
className | string | A string for the class name of the component |
Returns: null | _updateTargetTexture
example
// get custom test calss.
var test = node.getComponent("Test");
Defined in
cocos/core/components/component.ts:256
public emit (type : EventType, arg0 ?: any, arg1 ?: any, arg2 ?: any, arg3 ?: any, arg4 ?: any) : void
Inherited from: Collider.emit
Trigger an event directly with the event name and necessary arguments.
Input Parameters
Name | Type | Description |
---|---|---|
type | EventType | event type |
arg0 | any | - |
arg1 | any | - |
arg2 | any | - |
arg3 | any | - |
arg4 | any | - |
Returns: void
Defined in
cocos/core/components/component.ts:361
Inherited from: BoneData
Add mask values to fill in groups that need to be checked.
Inherited from: Collider.addGroup
Add a grouping value to fill in the group you want to join.
public addComponent <T extends _updateTargetTexture> (classConstructor : Constructor < T >) : null | T
Inherited from: BaseObject
Adds a component class to the node. You can also add component to node by passing in the name of the script.
Input Parameters
Name | Type | Description |
---|---|---|
classConstructor | Constructor < T > | The class of component to be retrieved or to be created |
Returns: null | T
example
import { Sprite } from 'cc';
const sprite = node.addComponent(Sprite);
Inherited from: Collider.addComponent
Adds a component class to the node. You can also add component to node by passing in the name of the script.
Input Parameters
Name | Type | Description |
---|---|---|
className | string | A string for the class name of the component |
Returns: null | _updateTargetTexture
example
const test = node.addComponent("Test");
Defined in
cocos/core/components/component.ts:224
protected __preload () : void
Inherited from: Collider.__preload
`__preload` is called before every onLoad.
It is used to initialize the builtin components internally,
to avoid checking whether onLoad is called before every public method calls.
This method should be removed if script priority is supported.
It is used to initialize the builtin components internally,
to avoid checking whether onLoad is called before every public method calls.
This method should be removed if script priority is supported.
Returns: void
Defined in
cocos/core/components/component.ts:530
Defined in
cocos/core/data/object.ts:372
protected _destruct () : void
deprecated
Inherited from: _onClear
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
Clear all references in the instance.
NOTE: this method will not clear the getter or setter functions which defined in the instance of CCObject.
Returns: void
example
// You can override the _destruct method if you need, for example:
_destruct: function () {
for (var key in this) {
if (this.hasOwnProperty(key)) {
switch (typeof this[key]) {
case 'string':
this[key] = '';
break;
case 'object':
case 'function':
this[key] = null;
break;
}
}
}
Defined in
cocos/core/data/object.ts:359
Inherited from: Collider._getLocalBounds
If the component's bounding box is different from the node's, you can implement this method to supply
a custom axis aligned bounding box (AABB), so the editor's scene view can perform hit test properly.
Input Parameters
Name | Type | Description |
---|---|---|
out_rect | DynamicStates | The rect to store the result bounding rect |
Returns: void
Defined in
cocos/core/components/component.ts:606
protected _getRenderScene () : _cachedCurrentTime
deprecated
Inherited from: borrowObject
Returns: _cachedCurrentTime
Defined in
cocos/core/components/component.ts:205
deprecated
Inherited from: hashCode
Input Parameters
Name | Type | Description |
---|---|---|
cloned | _updateTargetTexture | - |
Returns: undefined | _updateTargetTexture
Defined in
cocos/core/components/component.ts:397
Defined in
cocos/core/components/component.ts:383
Inherited from: Collider.lateUpdate
LateUpdate is called every frame, if the Component is enabled.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
Defined in
cocos/core/components/component.ts:517
protected onRestore () : void
Inherited from: Collider.onRestore
onRestore is called after the user clicks the Reset item in the Inspector's context menu or performs
an undo operation on this component.
If the component contains the "internal state", short for "temporary member variables which not included
in its CCClass properties", then you may need to implement this function.
The editor will call the getset accessors of your component to record/restore the component's state
for undo/redo operation. However, in extreme cases, it may not works well. Then you should implement
this function to manually synchronize your component's "internal states" with its public properties.
Once you implement this function, all the getset accessors of your component will not be called when
the user performs an undo/redo operation. Which means that only the properties with default value
will be recorded or restored by editor.
Similarly, the editor may failed to reset your component correctly in extreme cases. Then if you need
to support the reset menu, you should manually synchronize your component's "internal states" with its
properties in this function. Once you implement this function, all the getset accessors of your component
will not be called during reset operation. Which means that only the properties with default value
will be reset by editor.
If the component contains the "internal state", short for "temporary member variables which not included
in its CCClass properties", then you may need to implement this function.
The editor will call the getset accessors of your component to record/restore the component's state
for undo/redo operation. However, in extreme cases, it may not works well. Then you should implement
this function to manually synchronize your component's "internal states" with its public properties.
Once you implement this function, all the getset accessors of your component will not be called when
the user performs an undo/redo operation. Which means that only the properties with default value
will be recorded or restored by editor.
Similarly, the editor may failed to reset your component correctly in extreme cases. Then if you need
to support the reset menu, you should manually synchronize your component's "internal states" with its
properties in this function. Once you implement this function, all the getset accessors of your component
will not be called during reset operation. Which means that only the properties with default value
will be reset by editor.
This function is only called in editor mode.
Returns: void
Defined in
cocos/core/components/component.ts:648
protected start () : void
Inherited from: Collider.start
Called before all scripts' update if the Component is enabled the first time.
Usually used to initialize some logic which need to be called after all components' `onload` methods called.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
Usually used to initialize some logic which need to be called after all components' `onload` methods called.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
Returns: void
Defined in
cocos/core/components/component.ts:554
Inherited from: Collider.update
Update is called every frame, if the Component is enabled.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
Defined in
cocos/core/components/component.ts:507