2.KGameCanvas add threadSafe feature;
if needed threadSafe feature,do like this:
/**
* public KGameCanvas(String uniqueID, int keyPressedDelay,
* int keyPressedDelayDESC, int minDelay, boolean isThreadSafe)
*
/
Goo extends KGameCanvas{
public Goo(){
super(uniqueID, keyPressedDelay, keyPressedDelayDESC, minDelay,true);
}
}
nothed that the last parameter "isThreadSafe" is not necessarily.threadSafe is the default mode.
3.ActionController add auto gc feature;
4.Fixed debug mode :
if not in debug mode, there is no exception threw when missing Action Class.
2.New feature:
A new function, application internationalization, has been added. It is very easy to
develop a application with multi-language now.
3.Fixed bug:
Item event from CustomItem can be dealt correctly now.