Class: ConeCollider

extend: transform

Import example:

import { physics } from "cc"; 
const { ConeCollider } = physics;

Cone collider component.

Index

Constructors

Properties
Gets or sets the radius of the circle on the cone body, in local space.
Gets or sets the cone body is at the corresponding axial height, in local space.
Gets or sets the cone direction, in local space.

Inherited Properties
The uuid for editor.
Gets or sets the physical material for this collider.
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.
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.
Indicates whether this component is enabled and its node is also active in the hierarchy.
Indicates whether this component is enabled or not.
Gets or sets the center of the collider, in local space.
Get the rigid body component to which the collider is bound, possibly null.
The node this component is attached to. A component is always attached to a node.
  • _id protected
Returns a value which used to indicate the onLoad get called or not.

Inherited Methods
unschedule all scheduled tasks.
Un-schedules a custom task.
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.
Sets the mask value.
Sets the group value.
Use Scheduler system to schedule a task that runs only once, with a delay of 0 or larger.
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.
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.
Subtract the mask value to fill in the group that does not need to be checked.
Subtract the grouping value to fill in the group to be removed.
Removes all registered events of the specified target or type.
Registers a callback associated with a trigger or collision event, which is automatically unregistered once executed.
  • on public
Registers callbacks associated with triggered or collision events.
Unregisters callbacks associated with trigger or collision events that have been registered.
Checks whether there is correspond event listener registered on the given event.
Gets the mask value.
Gets the group value.
Returns all components of supplied type in self or any of its children.
Returns all components of supplied type in the node.
Returns the component of supplied type in any of its children using depth first search.
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.
Trigger an event directly with the event name and necessary arguments.
Add mask values to fill in groups that need to be checked.
Add a grouping value to fill in the group you want to join.
Adds a component class to the node. You can also add component to node by passing in the name of the script.
__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.
Clear all references in the instance.NOTE: this method will not clear the getter or setter functions which defined in the instance of CCObject.
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.
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.
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.
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.
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.

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.
protected _direction : _parsePolygonBoundingBox
default: EAxisDirection.Y_AXIS

Inherited Properties

public worldBounds : Readonly < AABB >
Inherited from: Collider.worldBounds
public uuid : string
Inherited from: Collider.uuid
The uuid for editor.

example

import { log } from 'cc';
log(comp.uuid); 
public sharedMaterial : null | _samplingEasingCurve
Inherited from: Collider.sharedMaterial
Gets or sets the physical material for this collider.
public replicated : boolean
Inherited from: Collider.replicated
public needTriggerEvent : boolean
Inherited from: Collider.needTriggerEvent
public needCollisionEvent : boolean
Inherited from: Collider.needCollisionEvent
public name : string
Inherited from: Collider.name
public material : null | _samplingEasingCurve
Inherited from: Collider.material
Gets or sets the physics material for this collider, which in Shared state will generate a new instance.
public isValid : boolean
Inherited from: Collider.isValid
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.

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 
public isTrigger : boolean
Inherited from: Collider.isTrigger
Gets or sets the collider is trigger, this will be always trigger if using builtin.
public hideFlags : getTranslation
Inherited from: Collider.hideFlags
After inheriting CCObject objects, control whether you need to hide, lock, serialize, and other functions.
public enabledInHierarchy : boolean
Inherited from: Collider.enabledInHierarchy
Indicates whether this component is enabled and its node is also active in the hierarchy.

example

import { log } from 'cc';
log(comp.enabledInHierarchy); 
public enabled : boolean
Inherited from: Collider.enabled
Indicates whether this component is enabled or not.

example

import { log } from 'cc';
comp.enabled = true;
log(comp.enabled); 
public center : Vec3
Inherited from: Collider.center
Gets or sets the center of the collider, in local space.
public boundingSphere : Readonly < window >
Inherited from: Collider.boundingSphere
public attachedRigidBody : null | TWEEN_SCALE
Inherited from: Collider.attachedRigidBody
Get the rigid body component to which the collider is bound, possibly null.
public type : EColliderType
readonly
Inherited from: parent
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); 
protected __editorExtras__ : unknown
Inherited from: Collider.__editorExtras__
protected __prefab : null | fromHEX
default: null
Inherited from: Collider.__prefab
protected _aabb : null | AABB
default: null
Inherited from: hashCode
protected _boundingSphere : null | window
default: null
Inherited from: returnToPool
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.
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.
protected _isSharedMaterial : boolean
default: true
Inherited from: Collider._isSharedMaterial
protected _isTrigger : boolean
default: false
Inherited from: setMaxCount
protected _material : null | _samplingEasingCurve
default: null
Inherited from: Collider._material
protected _name : string
Inherited from: Collider._name
protected _needCollisionEvent : boolean
default: false
Inherited from: toString
protected _needTriggerEvent : boolean
default: false
Inherited from: BoundingBoxDisplayData
protected _objFlags : number
Inherited from: Collider._objFlags
protected _sceneGetter : null | ( )
default: null
Inherited from: Collider._sceneGetter
protected _shape : null | IBaseShape
default: null
Inherited from: transform
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.
protected _isInitialized : boolean
Inherited from: Collider._isInitialized
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); 

Inherited Methods

public unscheduleAllCallbacks () :
void
Inherited from: Collider.unscheduleAllCallbacks
unschedule all scheduled tasks.
Returns: void

example

this.unscheduleAllCallbacks(); 
public unschedule (callback_fn : any) :
void
Inherited from: Collider.unschedule
Un-schedules a custom task.
Input Parameters
NameTypeDescription
callback_fnanyThe callback function of the task
Returns: void

example

this.unschedule(_callback); 
public targetOff (typeOrTarget : any) :
void
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
NameTypeDescription
typeOrTargetanyThe target to be searched for all related listeners
Returns: void
public setMask (v : number) :
void
Inherited from: Collider.setMask
Sets the mask value.
Input Parameters
NameTypeDescription
vnumber Mask value which is a 32-bits integer, the range is [2^0, 2^31]
Returns: void
public setGroup (v : number) :
void
Inherited from: T
Sets the group value.
Input Parameters
NameTypeDescription
vnumber Group value which is a 32-bits integer, the range is [2^0, 2^31]
Returns: void
public scheduleOnce (callback : any, delay ?: number) :
void
Inherited from: Collider.scheduleOnce
Use Scheduler system to schedule a task that runs only once, with a delay of 0 or larger.
Input Parameters
NameTypeDescription
callbackanyThe callback function of the task
delaynumberThe delay time for the first invocation, Unit: s
Returns: void

example

import { log } from 'cc';
this.scheduleOnce((dt) => void log(`time: ${dt}`), 2); 
public schedule (callback : any, interval ?: number, repeat ?: number, delay ?: number) :
void
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.
Input Parameters
NameTypeDescription
callbackanyThe callback function of the task
intervalnumberThe time interval between each invocation
repeatnumberThe repeat count of this task, the task will be invoked (repeat + 1) times, use [[23290]] to repeat a task forever
delaynumberThe delay time for the first invocation, Unit: s
Returns: void

example

import { log } from 'cc';
this.schedule((dt) => void log(`time: ${dt}`), 1); 
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
public removeMask (v : number) :
void
Inherited from: Collider.removeMask
Subtract the mask value to fill in the group that does not need to be checked.
Input Parameters
NameTypeDescription
vnumber Mask value which is a 32-bits integer, the range is [2^0, 2^31]
Returns: void
public removeGroup (v : number) :
void
Inherited from: Collider.removeGroup
Subtract the grouping value to fill in the group to be removed.
Input Parameters
NameTypeDescription
vnumber Group value which is a 32-bits integer, the range is [2^0, 2^31]
Returns: void
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
NameTypeDescription
typeOrTargetRecord < string, unknown > | TriggerEventType | _rawTextureAtlasesThe event type or target.
Returns: void
public once <TFunction extends
(...any : any []) =>
void
>
(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
NameTypeDescription
typeTriggerEventType | _rawTextureAtlasesThe event type, onTriggerEnter|onTriggerStay|onTriggerExit|onCollisionEnter|onCollisionStay|onCollisionExit;
callbacktoStringThe event callback, signature:`(event?:ICollisionEvent|ITriggerEvent)=>void`.
targetanyThe event callback target.
Returns: any
public onLostFocusInEditor () :
void
Inherited from: Collider.onLostFocusInEditor
Returns: void
public onFocusInEditor () :
void
Inherited from: Collider.onFocusInEditor
Returns: void
public on <TFunction extends
(...any : any []) =>
void
>
(type : TriggerEventType | _rawTextureAtlases, callback : BaseObject, target ?: any, once ?: boolean) :
any
Inherited from: Collider.on
Registers callbacks associated with triggered or collision events.
Input Parameters
NameTypeDescription
typeTriggerEventType | _rawTextureAtlasesThe event type, onTriggerEnter|onTriggerStay|onTriggerExit|onCollisionEnter|onCollisionStay|onCollisionExit;
callbackBaseObjectThe event callback, signature:`(event?:ICollisionEvent|ITriggerEvent)=>void`.
targetanyThe event callback target.
onceboolean-
Returns: any
public off (type : TriggerEventType | _rawTextureAtlases, callback ?:
(...any : any []) =>
void
, target ?: any) :
void
Inherited from: boundingBox
Unregisters callbacks associated with trigger or collision events that have been registered.
Input Parameters
NameTypeDescription
typeTriggerEventType | _rawTextureAtlasesThe event type, onTriggerEnter|onTriggerStay|onTriggerExit|onCollisionEnter|onCollisionStay|onCollisionExit;
callback
(...any : any []) =>
void
The event callback, signature:`(event?:ICollisionEvent|ITriggerEvent)=>void`.
targetanyThe event callback target.
Returns: void
public hasEventListener (type : string, callback ?:
(...any : any []) =>
void
, target ?: any) :
boolean
Inherited from: Collider.hasEventListener
Checks whether there is correspond event listener registered on the given event.
Input Parameters
NameTypeDescription
typestringEvent type.
callback
(...any : any []) =>
void
Callback function when event triggered.
targetanyCallback callee.
Returns: boolean
public getMask () :
number
Inherited from: bones
Gets the mask value.
Returns: number
public getGroup () :
number
Inherited from: Collider.getGroup
Gets the group value.
Returns: number
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
NameTypeDescription
classConstructorConstructor < T >The class of components to be retrieved
Returns: T []

example

import { Sprite } from 'cc';
const sprites = node.getComponentsInChildren(Sprite); 
public getComponentsInChildren (className : string) :
_updateTargetTexture []
Inherited from: Collider.getComponentsInChildren
Returns all components of supplied type in self or any of its children.
Input Parameters
NameTypeDescription
classNamestringA string for the class name of the components

example

const tests = node.getComponentsInChildren("Test"); 
public getComponents <T extends _updateTargetTexture> (classConstructor : Constructor < T >) :
T []
Inherited from: containsPoint
Returns all components of supplied type in the node.
Input Parameters
NameTypeDescription
classConstructorConstructor < T >The class of components to be retrieved
Returns: T []

example

import { Sprite } from 'cc';
const sprites = node.getComponents(Sprite); 
public getComponents (className : string) :
_updateTargetTexture []
Inherited from: Collider.getComponents
Returns all components of supplied type in the node.
Input Parameters
NameTypeDescription
classNamestringA string for the class name of the components

example

const tests = node.getComponents("Test"); 
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
NameTypeDescription
classConstructorConstructor < T >The class of component to be retrieved
Returns: null | T

example

import { Sprite } from 'cc';
const sprite = node.getComponentInChildren(Sprite); 
public getComponentInChildren (className : string) :
null | _updateTargetTexture
Inherited from: Collider.getComponentInChildren
Returns the component of supplied type in any of its children using depth first search.
Input Parameters
NameTypeDescription
classNamestringA string for the class name of the component

example

var Test = node.getComponentInChildren("Test"); 
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.
Input Parameters
NameTypeDescription
classConstructorConstructor < 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); 
public getComponent (className : string) :
null | _updateTargetTexture
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.
Input Parameters
NameTypeDescription
classNamestringA string for the class name of the component

example

// get custom test calss.
var test = node.getComponent("Test"); 
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
NameTypeDescription
typeEventTypeevent type
arg0any-
arg1any-
arg2any-
arg3any-
arg4any-
Returns: void
public destroy () :
boolean
Inherited from: Collider.destroy
Returns: boolean
public addMask (v : number) :
void
Inherited from: BoneData
Add mask values to fill in groups that need to be checked.
Input Parameters
NameTypeDescription
vnumber Mask value which is a 32-bits integer, the range is [2^0, 2^31]
Returns: void
public addGroup (v : number) :
void
Inherited from: Collider.addGroup
Add a grouping value to fill in the group you want to join.
Input Parameters
NameTypeDescription
vnumber Group value which is a 32-bits integer, the range is [2^0, 2^31]
Returns: void
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
NameTypeDescription
classConstructorConstructor < 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); 
public addComponent (className : string) :
null | _updateTargetTexture
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
NameTypeDescription
classNamestringA string for the class name of the component

example

const test = node.addComponent("Test"); 
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.
Returns: void
protected _destroyImmediate () :
void
deprecated
Inherited from: containsPoint
Returns: void
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;
             }
         }
     } 
protected _getLocalBounds (out_rect : DynamicStates) :
void
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
NameTypeDescription
out_rectDynamicStatesThe rect to store the result bounding rect
Returns: void
protected _getRenderScene () :
_cachedCurrentTime
deprecated
Inherited from: borrowObject
protected _instantiate (cloned ?: _updateTargetTexture) :
undefined | _updateTargetTexture
deprecated
Inherited from: hashCode
Input Parameters
NameTypeDescription
cloned_updateTargetTexture-
protected _onPreDestroy () :
void
deprecated
Inherited from: Collider._onPreDestroy
Returns: void
protected lateUpdate (dt : number) :
void
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.
Input Parameters
NameTypeDescription
dtnumberthe delta time in seconds it took to complete the last frame
Returns: void
protected onDestroy () :
void
Inherited from: Collider.onDestroy
Returns: void
protected onDisable () :
void
Inherited from: Collider.onDisable
Returns: void
protected onEnable () :
void
Inherited from: Collider.onEnable
Returns: void
protected onLoad () :
void
Inherited from: Collider.onLoad
Returns: void
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.

This function is only called in editor mode.

Returns: void

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.
Returns: void
protected update (dt : number) :
void
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.
Input Parameters
NameTypeDescription
dtnumberthe delta time in seconds it took to complete the last frame
Returns: void