VideoClip Class
Extends Asset, EventTarget(mixin)
Module: cc
Class for video data handling.
Index
Properties
- url- String- cc.Asset.urlis deprecated, please use nativeUrl instead
- _uuid- String
- loaded- BooleanWhether the asset is loaded or not.
- nativeUrl- StringReturns the url of this asset's native object, if none it will returns an empty string.
- refCount- NumberThe number of reference
- _native- StringSerializable url for native asset.
- _nativeAsset- ObjectThe underlying native asset of this asset if one is available.
- _name- String
- _objFlags- Number
- name- StringThe name of the object.
- isValid- BooleanIndicates whether the object is not yet destroyed.
Methods
- toStringReturns the asset's url.
- serializeProvide this method at the request of AssetDB.
- createNodeCreate a new node using this asset in the scene....
- _setRawAssetSet native file name for this asset.
- addRefAdd references of asset
- decRefReduce references of asset and it will be auto released when refCount equals 0.
- hasEventListenerChecks whether the EventTarget object has any callback registered for a specific type of event.
- onRegister an callback of a specific event type on the EventTarget.
- offRemoves the listeners previously registered with the same type, callback, target and or useCapture,...
- targetOffRemoves all callbacks previously registered with the same target (passed as parameter).
- onceRegister an callback of a specific event type on the EventTarget,...
- dispatchEventSend an event with the event object.
- clearDestroy all callbackInfos.
- destroyActual object destruction will delayed until before rendering.
- _destructClear all references in the instance.
- _onPreDestroyCalled before the object being destroyed.
- _serializeThe customized serialization for this object.
- _deserializeInit this object from the custom serialized data.
Details
Properties
url
cc.Asset.urlis deprecated, please use nativeUrl instead
| meta | description | 
|---|---|
| Type | String | 
| Defined in | cocos2d/core/asset-manager/deprecated.js:728 | 
| Deprecated | cc.Asset.url is deprecated, please use cc.Asset.nativeUrl instead | 
_uuid
| meta | description | 
|---|---|
| Type | String | 
| Defined in | cocos2d/core/assets/CCAsset.js:57 | 
loaded
Whether the asset is loaded or not.
| meta | description | 
|---|---|
| Type | Boolean | 
| Defined in | cocos2d/core/assets/CCAsset.js:66 | 
nativeUrl
Returns the url of this asset's native object, if none it will returns an empty string.
| meta | description | 
|---|---|
| Type | String | 
| Defined in | cocos2d/core/assets/CCAsset.js:81 | 
refCount
The number of reference
| meta | description | 
|---|---|
| Type | Number | 
| Defined in | cocos2d/core/assets/CCAsset.js:115 | 
_native
Serializable url for native asset.
| meta | description | 
|---|---|
| Type | String | 
| Defined in | cocos2d/core/assets/CCAsset.js:131 | 
_nativeAsset
The underlying native asset of this asset if one is available. This property can be used to access additional details or functionality releated to the asset. This property will be initialized by the loader if
_nativeis available.
| meta | description | 
|---|---|
| Type | Object | 
| Defined in | cocos2d/core/assets/CCAsset.js:142 | 
_name
| meta | description | 
|---|---|
| Type | String | 
| Defined in | cocos2d/core/platform/CCObject.js:76 | 
_objFlags
| meta | description | 
|---|---|
| Type | Number | 
| Defined in | cocos2d/core/platform/CCObject.js:83 | 
name
The name of the object.
| meta | description | 
|---|---|
| Type | String | 
| Defined in | cocos2d/core/platform/CCObject.js:240 | 
Examples
obj.name = "New Obj";
isValid
Indicates whether the object is not yet destroyed. (It will not be available after being destroyed)
When an object'sdestroyis called, it is actually destroyed after the end of this frame. SoisValidwill return false from the next frame, whileisValidin the current frame will still be true. If you want to determine whether the current frame has calleddestroy, usecc.isValid(obj, true), but this is often caused by a particular logical requirements, which is not normally required.
| meta | description | 
|---|---|
| Type | Boolean | 
| Defined in | cocos2d/core/platform/CCObject.js:258 | 
Examples
var node = new cc.Node();
cc.log(node.isValid);    // true
node.destroy();
cc.log(node.isValid);    // true, still valid in this frame
// after a frame...
cc.log(node.isValid);    // false, destroyed in the end of last frame
Methods
toString
Returns the asset's url.
The Asset object overrides the toString() method of the Object object.
For Asset objects, the toString() method returns a string representation of the object.
JavaScript calls the toString() method automatically when an asset is to be represented as a text value or when a texture is referred to in a string concatenation.
| meta | description | 
|---|---|
| Returns | String | 
| Defined in | cocos2d/core/assets/CCAsset.js:212 | 
serialize
Provide this method at the request of AssetDB.
| meta | description | 
|---|---|
| Returns | String | 
| Defined in | cocos2d/core/assets/CCAsset.js:232 | 
createNode
Create a new node using this asset in the scene.
If this type of asset dont have its corresponding node type, this method should be null.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/assets/CCAsset.js:246 | 
Parameters
_setRawAsset
Set native file name for this asset.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/assets/CCAsset.js:261 | 
Parameters
addRef
Add references of asset
| meta | description | 
|---|---|
| Returns | Asset | 
| Defined in | cocos2d/core/assets/CCAsset.js:283 | 
decRef
Reduce references of asset and it will be auto released when refCount equals 0.
| meta | description | 
|---|---|
| Returns | Asset | 
| Defined in | cocos2d/core/assets/CCAsset.js:301 | 
hasEventListener
Checks whether the EventTarget object has any callback registered for a specific type of event.
| meta | description | 
|---|---|
| Returns | Boolean | 
| Defined in | cocos2d/core/event/event-target.js:69 | 
Parameters
- typeString The type of event.
on
Register an callback of a specific event type on the EventTarget.
This type of event should be triggered via emit.
| meta | description | 
|---|---|
| Returns | Function | 
| Defined in | cocos2d/core/event/event-target.js:77 | 
Parameters
- typeString A string representing the event type to listen for.
- callbackFunction The callback that will be invoked when the event is dispatched.- The callback is ignored if it is a duplicate (the callbacks are unique).- arg1Any arg1
- arg2Any arg2
- arg3Any arg3
- arg4Any arg4
- arg5Any arg5
 
- targetObject The target (this object) to invoke the callback, can be null
Examples
eventTarget.on('fire', function () {
    cc.log("fire in the hole");
}, node);
off
Removes the listeners previously registered with the same type, callback, target and or useCapture, if only type is passed as parameter, all listeners registered with that type will be removed.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/event/event-target.js:119 | 
Parameters
- typeString A string representing the event type being removed.
- callbackFunction The callback to remove.
- targetObject The target (this object) to invoke the callback, if it's not given, only callback without target will be removed
Examples
// register fire eventListener
var callback = eventTarget.on('fire', function () {
    cc.log("fire in the hole");
}, target);
// remove fire event listener
eventTarget.off('fire', callback, target);
// remove all fire event listeners
eventTarget.off('fire');
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.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/event/event-target.js:163 | 
Parameters
- targetObject The target to be searched for all related listeners
once
Register an callback of a specific event type on the EventTarget, the callback will remove itself after the first time it is triggered.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/event/event-target.js:182 | 
Parameters
- typeString A string representing the event type to listen for.
- callbackFunction The callback that will be invoked when the event is dispatched.- The callback is ignored if it is a duplicate (the callbacks are unique).- arg1Any arg1
- arg2Any arg2
- arg3Any arg3
- arg4Any arg4
- arg5Any arg5
 
- targetObject The target (this object) to invoke the callback, can be null
Examples
eventTarget.once('fire', function () {
    cc.log("this is the callback and will be invoked only once");
}, node);
dispatchEvent
Send an event with the event object.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/event/event-target.js:208 | 
Parameters
- eventEvent
clear
Destroy all callbackInfos.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/event/event-target.js:221 | 
destroy
Destroy this Object, and release all its own references to other objects.
Actual object destruction will delayed until before rendering.
From the next frame, this object is not usable anymore.
You can use cc.isValid(obj) to check whether the object is destroyed before accessing it.
| meta | description | 
|---|---|
| Returns | Boolean | 
| Defined in | cocos2d/core/platform/CCObject.js:293 | 
Examples
obj.destroy();
_destruct
Clear all references in the instance.
NOTE: this method will not clear the getter or setter functions which defined in the instance of CCObject.
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;
        }
    }
}
| meta | description | 
|---|---|
| Defined in | cocos2d/core/platform/CCObject.js:427 | 
_onPreDestroy
Called before the object being destroyed.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/platform/CCObject.js:483 | 
_serialize
The customized serialization for this object. (Editor Only)
| meta | description | 
|---|---|
| Returns | object | 
| Defined in | cocos2d/core/platform/CCObject.js:511 | 
Parameters
- exportingBoolean
_deserialize
Init this object from the custom serialized data.
| meta | description | 
|---|---|
| Defined in | cocos2d/core/platform/CCObject.js:524 | 
Parameters
- dataObject the serialized json data
- ctx_Deserializer
