Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - devcat

#1
Projects / First game: Drop it All
May 24, 2015, 06:57:27 PM
Hi guys,
here is a small game i made using jpct-ae.
It's the first game i publish to the public so i hope you like it.


Link: https://play.google.com/store/apps/details?id=com.robin.dropitall

Fell free to leave some comments.
#2
Support / Stange Overlay shear effect
October 18, 2014, 10:46:34 PM
Hi,

i try to apply a shear operation to an Overlay. I tried the following code with the jPCT PC version and it works fine.

// inside some update routine
Matrix mat = overlay.getObject3D().getRotationMatrix();
mat.set(0, 1, shearY);
mat.set(1, 0, shearX);


Then i tried it on android and for some reason it does an additional translation besides the shear operation.
Any suggestions?

Thanks