Iāve created an example project in Cocos Creator.
Now Iām trying to change label text to āHello, Daddy!ā⦠Nothing⦠I still see āHello, Worldā at browser
cc.Class({
extends: cc.Component,
properties: {
label: {
default: null,
type: cc.Label
},
text: 'Hello, Daddy!'
},
// use this for initialization
onLoad: function () {
this.label.string = this.text;
},
// called every frame
update: function (dt) {
},});
Hi guys.
Just a suggestion. Tutorials would be clearer if the current mapping of ānames used in tutorial to refer to panelsā to actual IDE panel titles:
arrangement manager - Hierarchy
scene editor - Scene
resource manager - Assets
property checker - Inspector
was changed to
hierarchy manager - Hierarchy
scene editor - Scene
asset manager - Assets
property inspector - Inspector
Looking Cocos Creator will be really great development option for me. I like it. But may you add these features?
1-I want to add physics shapes (box or circle collider shapes) to nodes and sprites.
No: Why It really important feature for me :((
Yes: Thanks, it will be great!
2-Will you add the simple tile editor feature (example, draw sprite and node with a pen tool on the scene )
No: Why? It may be usable feature. We wonāt need tile editor with that for simple tile based projects.
Yes: Omg, Iām waiting that!!
I think you should try to see whatās your Component panel is shown for text property. The property value you set in Class definition is the default value, the real value will be the one you set in the editorās inspector panel. Because the values in inspector will be serialized while saving and deserialized at runtime.
This is amazing work! thanks. Iām fairly new to cocoa2d but Iāve been coming back every few months over the last 2 years and its impressive to see its evolution from such a small group of developers. Itās impressive work and I think JS+ES6+CMD with great performance for 2D applications will see a lot of usage from developers.
I think the key will be clear examples and simple documentation for getting the environment started ā there feels to be so many pieces of cocos2d and a long history, so its nice to get an updated picture on the current-best dev environment to start hacking and get rolling on a game.
As well, having a roadmap page would be nice too somewhere. And can you please have examples / texts in english as well.
Sorry if it is not right place to ask my question.
I have downloaded COCOS CREATOR and start with demo app but when i work with offline mode, it create issues as below:
{ [Error: getaddrinfo ENOTFOUND fbupdater.avosapps.comfbupdater.avosapps.com:80] code: āENOTFOUNDā, errno: āENOTFOUNDā, syscall: āgetaddrinfoā, hostname: āfbupdater.avosapps.comā, host: āfbupdater.avosapps.comā, port: 80 } at ClientRequest. (/Applications/CocosCreator.app/Contents/Resources/app.asar/share/hot-updates.js:1:1902) at emitOne (events.js:77:13) at ClientRequest.emit (events.js:169:7) at Socket.socketErrorListener (_http_client.js:259:9) at emitOne (events.js:77:13) at Socket.emit (events.js:169:7) at connectErrorNT (net.js:993:8) at doNTCallback2 (node.js:441:9) at process._tickCallback (node.js:355:17)
Can you please help me solve that issue? Is there any issue in setup Cocos Creator?
In offline mode, itās normal to see these messages, the first one is the communication with our login server, the second one is the hot update request to see whether a new version is out.
Did they block any usage in Creator ? If not, you can just ignore them
Iām using Cocos Creator since a few days, and while I still have a lot to discover, I do enjoy using it more and more day after day: great job guys!!
I have a bug report and a couple of suggestions:
Bug Report (Iām using the Mac version):
very often, when using the build in JavaScript editor (the one opening a standalone window), it hangs after I start making some changes in the source code
(the autocompletion did not seemed to start so I donāt think it is autocompletion related)
(it maybe happen more often when I create variables outside cc.Class({}); block, like: var Utils = require(āUtilsā); )
Itās not a big deal as I can just kill the window related to the JavaScript Editor (which was using ~100% CPU) without exiting the project, but I wanted to mention it.
Suggestions (build related) - it would be great if it was possible to:
being able to start the build process from the command line
automatically start a pre-build script
automatically start a post-build script
specify the real build directory name, without having a platform name directory (native, web-mobile etc) added to it
Is there any git repo where is available the latest version of Cocos Creator?
Thank you for your suggestions, the first one is already supported in the dev version. We will discuss how to support pre & post build scripts, I also think itās a great idea personally. The last one, you mean unified build directory for web & native ?
Yes, your project will be compatible across the versions, and for major version update, we might introduce some difference, but will also provide a upgrade tool or something.
As for now, we are in public beta, and we havenāt reach 1.0 yet, the APIs may still change, it is possible, we will give clear informations about the changes to help you fix issues caused by API change. But in any way, your project will be compatible with 1.0 and future versions.
I mean that the directory specified should be the one really used to put the generated files, not a directory name in which there will be an other subdirectory (like ānativeā, āweb-mobileā etc).
PS: How can I start the build process from the command line? I tried /Applications/CocosCreator.app/Contents/MacOS/CocosCreator --help but it just started an other session of Cocos Creator