How to create scene object CocosCreator?

hideho

you can create a scene by using

var scene=new cc.Scene();

if you want to create the whole scene in code that is

if you just want to create scenes manually in cocos creator you just go to file>new scene in your project, different scenes can be loaded them using

cc.director.loadScene('SceneAssetName'); 

as answered here:

cheers