We are here to help
Gio

Hi

As one of the first developers using WADE, you can get personal support from our team. Anything you need to get started making your game with WADE, just ask here and we'll do our best to help you as soon as possible

All 5 Comments
rqmedes

Is there any  example bundle to play around with?  Is any of the source doe for Zirma available?

Gio

Hi

 
There are some examples in the tutorials section, I don't know if you've seen those. We go through all the steps of building a simple match-3 game, trying to explain some of the features of WADE along the way.
 
We need more examples, and we're working on it, but the tutorial stuff should be enough to get started. 
 
The source code of Zirma isn't currently available, but we are considering making that available at some point too.
kirkkeller

Thought I'd be a bit further along before asking but I"m stuck at first base.

I followed the initial steps in the example, but I've got a syntax error in my test.js. Wade is giving me the following error.

Warning: Unable to initialize app. App.init function is missing.

This is the content of test.js


App = function()
{
}

Gio

Hi kirkkeller and welcome to the forums.

 
That isn't really an error but just a warning. WADE tries to initialize your App by calling its init function (if there is one). Try this:
 
App = function(){    this.init = function()    {        // do something here    };};
kirkkeller

Thought I'd be a bit further along before asking but I"m stuck at first base.

I followed the initial steps in the example, but I've got a syntax error in my test.js. Wade is giving me the following error.

Warning: Unable to initialize app. App.init function is missing.

This is the content of test.js


App = function()
{
}

Post a reply
Add Attachment
Submit Reply
Login to Reply