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 - arash

#1
Support / background video
January 20, 2014, 07:49:33 AM
Hi,

I am trying to add a video to my game background. I tried FrameBuffer.blit method and changed the background texture on every frame but this is very slow and maxes out my memory pretty soon.

Is there any other way to display a video on the background?

Cheers
#2
Hi All,

I finally published my first app. It is a learning aid for engineering students to understand advanced 3D stress analysis. I used JPCT for my sensor orientation. also almost all of the rotation calculations are handled by JPCT.

This App only works on devices with Android 4.0 or higher. Also it works best on HD devices (e.g. HTC One).

Please download:
https://play.google.com/store/apps/details?id=com.arash.mohrcircle




[attachment deleted by admin]
#3
Support / setRotationPivot translates my object
September 18, 2013, 02:40:44 PM
Hi,

I am having a very hard time understanding how setRotationPivot works on AE version

When I do the following

xConeRight.setRotationPivot(new SimpleVector(15, 15, ,15));

it is the same as if I was doing

xConeRight.translate(30, 0, 0);

and then when I call rotateX or rotateY the object actually rotates around point (15, 0 ,0 )

I appreciate any help.