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.


Topics - me520

Pages: [1]
1
Support / How to blit components in 3D app based on jPCT
« on: April 05, 2010, 12:49:24 pm »
HI ,I am back...

First I've to say thanks for this great 3D engine.

but after some tests i got a problem in jPCT Car demo

I want to know how could i add a JTextField or JTextArea in scene of Car demo to accept user's input?

e.g.
there have two textfield "input" and "show"
I input some text in "input" textfield,and when press "send" button,the message was display on "show" textfield

2
Support / How to remove an object3D from world?
« on: March 15, 2010, 11:49:12 am »
If we want to add an object3D into world we can do this :

World world = new World();
Object3D model1 = ...
Object3D model2 = ...

world.addObject(model1);
world.addObject(model2);

now,if we wang to remove model2 from world , how can we do?

Pages: [1]