Page 1 of 1

Darkboy - The Agent Training 3D (Demo)

PostPosted: Tue Nov 17, 2009 1:20 am
by Bee-Ant
Here's the game data of Darkboy 3D...
enjoy :D

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Tue Nov 17, 2009 1:58 am
by Chai
This is amazing. It's real 3D.

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Tue Nov 17, 2009 2:09 am
by Bee-Ant
Hmm...but still imperfect...it needs more shadow on some object like the tree...

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Sat Nov 21, 2009 1:12 pm
by Hblade
It's awesome! :D But uh, one thing it shakes ALLOT :D

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Sat Nov 21, 2009 11:23 pm
by makslane
No words :-)

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Sat Nov 21, 2009 11:49 pm
by superman123
makslane, i dont think game editor is 2d anymore :shock: :o :shock: :o
this is awesome

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Sun Nov 22, 2009 2:02 am
by Bee-Ant
Thats a fake 3D anyway...oh well...

Anyway I also dont know, if I edit something and then run the game, the game will be shaked...
I avoid it by exit the GE, reopen the game, and then run it without edit anything.

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Tue Nov 24, 2009 2:47 am
by DST
Top Notch!

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Tue Nov 24, 2009 4:05 am
by Bee-Ant
What's notch ???

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Tue Oct 26, 2021 1:33 pm
by bat78
Bump.

I'll be including this game in an ephemeral showcase excerpt in the upcoming gE2 trailer.

I had to make it appear good though, so I made some minor modifications.
For example, the shaking seems to be a result from the way movement and viewtracking is approached.

A temporal solution, without altering semantics is to get rid of analog values and ignore small changes (the former being optional):
Code: Select all
double X = c.x-(width/2);
double Y = c.y-(width/2);

if(abs(X-x) > 1) x = round(X);
if(abs(Y-y) > 1) y = round(Y);

In view => Draw Actor

Re: Darkboy - The Agent Training 3D (Demo)

PostPosted: Mon May 16, 2022 9:54 pm
by Bee-Ant
Thank you