Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 552 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 Registered Users
Previous Thread
Next Thread
Print Thread
Rating: 5
Page 29 of 41 1 2 27 28 29 30 31 40 41
Re: Newton 2 wrapper [Re: VeT] #279949
07/20/09 06:41
07/20/09 06:41
Joined: Apr 2009
Posts: 14
Poland, Germany
E
EnjoMitch Offline
Newbie
EnjoMitch  Offline
Newbie
E

Joined: Apr 2009
Posts: 14
Poland, Germany
Thank you, it helped. I was sure that I had the latest version...

Re: Newton 2 wrapper [Re: EnjoMitch] #279953
07/20/09 07:24
07/20/09 07:24
Joined: Aug 2004
Posts: 1,345
Kyiv, Ukraine
VeT Offline OP

Serious User
VeT  Offline OP

Serious User

Joined: Aug 2004
Posts: 1,345
Kyiv, Ukraine
Thats great smile
I'm planing to re-upload all pictures before next version, so it would be a little easier to note latest versions.


1st prize: Lite-C and Newton 2.17 by Vasilenko Vitaliy

Newton2 videos: http://tinyurl.com/NewtonVideos
LiteC+Newton2 discussion: http://tinyurl.com/NewtonWrapperDiscussion
Latest LiteC+Newton2 version(v23, from 29.10.2009): http://depositfiles.com/files/ae1l0tpro
Re: Newton 2 wrapper [Re: VeT] #280887
07/24/09 14:35
07/24/09 14:35
Joined: Aug 2004
Posts: 1,345
Kyiv, Ukraine
VeT Offline OP

Serious User
VeT  Offline OP

Serious User

Joined: Aug 2004
Posts: 1,345
Kyiv, Ukraine
Some minor upgrades are done, still waiting for Raycast car in Newton.


1st prize: Lite-C and Newton 2.17 by Vasilenko Vitaliy

Newton2 videos: http://tinyurl.com/NewtonVideos
LiteC+Newton2 discussion: http://tinyurl.com/NewtonWrapperDiscussion
Latest LiteC+Newton2 version(v23, from 29.10.2009): http://depositfiles.com/files/ae1l0tpro
Re: Newton 2 wrapper [Re: VeT] #281043
07/25/09 07:53
07/25/09 07:53
Joined: May 2003
Posts: 567
Spain, Canary Islands
Felixsg Offline
User
Felixsg  Offline
User

Joined: May 2003
Posts: 567
Spain, Canary Islands
thanks. Not abandon the car support please

Re: Newton 2 wrapper [Re: Felixsg] #288507
09/06/09 22:17
09/06/09 22:17
Joined: Sep 2003
Posts: 9,859
F
FBL Offline
Senior Expert
FBL  Offline
Senior Expert
F

Joined: Sep 2003
Posts: 9,859
First of all thanks for all the hard work.

I have some weird problem and the obvious reason most likely is me.

I use some test level consisting of a mixture of blocks and models. The models have flag8 turned on.

I drop a physics sphere in there with a small change to the gravity vector:

void onforceandtorque2(NewtonBody* body)
{
float mass, ixx, iyy, izz;
NewtonBodyGetMassMatrix(body, &mass, &ixx, &iyy, &izz);
NewtonBodySetForce(body, vectorf(0, -1.024 * mass, -9.755 * mass));
}

This way I simulate a 6° slope without actually working with a slope.
Ball behaviour is fine, the only problem is, it does not collide with walls - it just passes through them. Regardless whether we're talking about blocks or models
Floor is not passed. What is going on!?

I modified the newton_debug.c to see whether the collision geometry was transfered correctly to Newton and everything looks fine.

I don't really understand what is wrong. I have worked with Newton before in Dark Basic, so I know Newton can do it.
I haven't done any change to the newton_main file, but couldn't see an obvious error with the collision tree generation either...

edit: I possible found it. Seems like my scale in A7 is too huge and the factor I need for transforming to meters is getting inaccurate.

Last edited by Firoball; 09/06/09 22:39.
Re: Newton 2 wrapper [Re: FBL] #288593
09/07/09 14:50
09/07/09 14:50
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline
Expert
Rei_Ayanami  Offline
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
I´ve got a question: Is there a list or a manual where are all the newton functions? I can´t find it!

Re: Newton 2 wrapper [Re: Rei_Ayanami] #288616
09/07/09 16:01
09/07/09 16:01
Joined: Sep 2003
Posts: 9,859
F
FBL Offline
Senior Expert
FBL  Offline
Senior Expert
F

Joined: Sep 2003
Posts: 9,859
You have to download the Newton SDK from the Newton hoempage.

Re: Newton 2 wrapper [Re: FBL] #289461
09/13/09 09:33
09/13/09 09:33
Joined: Sep 2004
Posts: 178
J
jweb Offline
Member
jweb  Offline
Member
J

Joined: Sep 2004
Posts: 178
hi
is car physik in the laste Version implemented ?

Re: Newton 2 wrapper [Re: jweb] #289462
09/13/09 09:54
09/13/09 09:54
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline
Expert
Rei_Ayanami  Offline
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Okay, i download the sdk, maybe i can see find it out^^ - i like Newton more than PhysX because it´s free^^

Re: Newton 2 wrapper [Re: Rei_Ayanami] #289535
09/13/09 19:54
09/13/09 19:54
Joined: Sep 2003
Posts: 9,859
F
FBL Offline
Senior Expert
FBL  Offline
Senior Expert
F

Joined: Sep 2003
Posts: 9,859
I did so too. But there seems to be no manual included in the beta version...

Page 29 of 41 1 2 27 28 29 30 31 40 41

Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1