I have few questions for my world editor, instead of polluting the forum with 3 Polls (lol) I will ask all the 3 questions in this topic:
1)Wich is a reasonable world limit for a "unlimited world"? Select a number from the list.
2) Z up or Y up? What axis do you think will be the best for looking up or down?
3) every tile will be long ? (1 meter , 0.5 meters, 0.25 meters, 2 meters, more than 2, less than 0.25?).
Any thinking or suggestion is wellcome
3 Polls at once.
3 Polls at once.
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
-
- Posts: 1215
- Joined: Tue Jan 09, 2007 7:03 pm
- Location: Leuven, Belgium
1. Doesn't really matter I think, also depends on what kind of unlimited world you want to make (a repeating world or just a very huge world?)
2. I've always preferred Y as the vertical axis, they taught it to me like that way back in highschool and I've stuck with it (but just do whatever you feel comfortable with, a lot of editors support both)
3. 1 meter is one of the best options to prevent floating point errors for as long as possible in position calculation
2. I've always preferred Y as the vertical axis, they taught it to me like that way back in highschool and I've stuck with it (but just do whatever you feel comfortable with, a lot of editors support both)
3. 1 meter is one of the best options to prevent floating point errors for as long as possible in position calculation
Why make every tile the same size?
In my editor the tiles can be different sizes and I find that makes for much more interesting worlds.
Here is a quick screenshot of a development build for my editor.
http://simplest-image-hosting.net/jpg-0 ... ktopd12009
I've highlighted all the tiles to show different sizes.
In my editor the tiles can be different sizes and I find that makes for much more interesting worlds.
Here is a quick screenshot of a development build for my editor.
http://simplest-image-hosting.net/jpg-0 ... ktopd12009
I've highlighted all the tiles to show different sizes.
Because i want to give the chance to make terrain zones as much detailed as possible. The tile size depends only on the LOD . so nearby terrain zones will be always at the maximum LOD available.Why make every tile the same size?
I prefer Y too as vertical axis. But maybe other people has preferences
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
1.- Drive your world from a database. The only limit would be the amount of hard drives you wanted to dedicate to it, and your working limit would be that of the far plane of the camera.
2.- Use Y as the up vector. The only software that uses Z as the up vector is 3DSMAX, the rest use Y.
3.- As close to 1 as posible, being 1 the perfect choice to avoid rounding errors, as people here is suggesting.
2.- Use Y as the up vector. The only software that uses Z as the up vector is 3DSMAX, the rest use Y.
3.- As close to 1 as posible, being 1 the perfect choice to avoid rounding errors, as people here is suggesting.
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
-
- Posts: 363
- Joined: Thu Dec 16, 2010 8:50 pm
- Location: Somewhere in the clouds.. drinking pink lemonade and sunshine..
even that could have a work around, you can just write a custom, highly optimized skybox that puts up planes or whatever of low-detailed silhouettes of whatever is farther than the cameras far point. that wonderful thing about computers is that since they are virtual data interpretations there really is no limit... well.. I won't bother to explain, just read my signature.Mel wrote:1.- Drive your world from a database. The only limit would be the amount of hard drives you wanted to dedicate to it, and your working limit would be that of the far plane of the camera.
*coughCough*SuperMel wrote: 2.- Use Y as the up vector. The only software that uses Z as the up vector is 3DSMAX, the rest use Y.
ent1ty wrote: success is a matter of concentration and desire
at a cost measure in computer resourcesButler Lampson wrote: all problems in Computer Science can be solved by another level of indirection