Class cc.Scene

Class Summary
Constructor Attributes Constructor Name and Description
 

cc.Scene is a subclass of cc.Node that is used only as an abstract concept.

Method Summary

Class Detail

cc.Scene()

cc.Scene is a subclass of cc.Node that is used only as an abstract concept.

cc.Scene an cc.Node are almost identical with the difference that cc.Scene has it's anchor point (by default) at the center of the screen.

For the moment cc.Scene has no other logic than that, but in future releases it might have additional logic.

It is a good practice to use and cc.Scene as the parent of all your nodes.

var scene = new cc.Scene();

Method Detail

  • <static> {cc.Scene} cc.Scene.create()
    creates a scene
    // Example
    var aScene = cc.Scene.create();
    //OR
    var aScene = new cc.Scene();
    Deprecated:
    since v3.0,please use new cc.Scene() instead.
    Returns:
    {cc.Scene}