Hot features

Top  Previous  Next

Wed improvements

 

- Sprite preview:

 

aum40_shot12

 

- Separate "Add" menu:

 

aum40_shot13

 

- Light ranges can be controlled using Wed's scale mode:

 

aum40_shot14

 

 

error(string)

 

Outputs a message box with the given error message. Useful for debugging.

 

function test_player()

{

   if (player == null)

   {

      error("The player doesn't exist in this level!");

   }

}

 

on_t = test_player; // press the "T" key to check player's status

 

aum40_shot15

 

 

Multidimensional arrays

 

The new C-script compiler now supports an arbitrary number of array dimensions. I needed this feature so bad while I was developing the code for perfect AI and now it is here :)

 

var array[10][10][10];