Page 1 of 1
Hey, Wanna Play With Balls?
Posted: Sat Jul 14, 2007 6:46 am
by Landix
Hey, Wanna Play With Balls?
Ever want to play Marble Madness, or maybe Marble Blast Ultra, but were too cheap to buy them? Thanks to Geoball you can get that same sort of effect, for free if you.....
Read here:
http://planetquake.gamespy.com/View.php ... ail&id=222
THX PQ.COM
Posted: Sat Jul 14, 2007 9:55 am
by ^misantropia^
Nice.
How's development coming along btw?
EDIT: you might want to update your
SVN repository (something you should do at least daily, actually).
Posted: Sat Jul 14, 2007 10:38 am
by Landix
Yepp, i update today, i am a little bit frustrated, because, i found no coder who have some time for us.
2 things are a must.
1. simple physics
2. make the bounding box a bounding sphere. (For more realistic movement). i heard that team arena use sphere tracing..... but how ever, i can not do this.
And our coder yet, have not time for do that now.
with simple physics i mean, you can move a box or a sphere over the plane.
With the simple physics, we can have a goal, but who will do this for us!?
This is a little mess, because i got some really great mappers in my project.
Posted: Sat Jul 14, 2007 10:57 am
by Landix
Posted: Sat Jul 14, 2007 9:21 pm
by ^misantropia^
Landix wrote:2. make the bounding box a bounding sphere. (For more realistic movement). i heard that team arena use sphere tracing..... but how ever, i can not do this.
Hmm... a simple solution that comes to mind is this: in game/g_active.c replace the two lines that say this...
...with this:
And, in game/g_local.h, add this somewhere:
Code: Select all
void trap_TraceCapsule( trace_t *results, const vec3_t start, const vec3_t mins, const vec3_t maxs, const vec3_t end, int passEntityNum, int contentmask );
Posted: Sun Jul 15, 2007 5:57 am
by Landix
Thx for the code.
I think this are not working?
here a screen, the size of the BB Box is 15x15.
Code: Select all
pm->mins[0] = -15; //7
pm->mins[1] = -15;
pm->maxs[0] = 15; //7
pm->maxs[1] = 15;
Another solution?
