Terrain
by Joe Melton · in Torque 3D Professional · 03/31/2009 (11:45 pm) · 28 replies
Ok, so now that I've paid up, can I get some hints on terrain changes? Will highly-detailed terrain textures be possible now? :)
#2
Edit: added some sense to my post
04/03/2009 (10:47 am)
This looks amazing! Can you leak more details? Maybe some background info on how the blending is done?Edit: added some sense to my post
#3
Thanks for your reply. :)
04/03/2009 (12:04 pm)
Looks like there is still just a single detail map in those images. Do you have any examples where multiple detail maps are in use?Thanks for your reply. :)
#4
Though, cropped/resized images usually dont look as good as regular ones :)
Btw, on top image i would probably have modelled the wodden fence thing to the left better, like having a "hole" or something in the ground, right now, its like really sharp corners where it hits the ground (looks very fake) hehe, anyways, just a thought.
And the idea it good (texture wise) but who would really put a fence down into hard rock (or the ground rock its in), hard work :P
And now.. any news about Beta release ? (cant be far now :P) i cannnnt waaaaiiiiit !
04/03/2009 (12:29 pm)
Nice terrain :)Though, cropped/resized images usually dont look as good as regular ones :)
Btw, on top image i would probably have modelled the wodden fence thing to the left better, like having a "hole" or something in the ground, right now, its like really sharp corners where it hits the ground (looks very fake) hehe, anyways, just a thought.
And the idea it good (texture wise) but who would really put a fence down into hard rock (or the ground rock its in), hard work :P
And now.. any news about Beta release ? (cant be far now :P) i cannnnt waaaaiiiiit !
#5
04/04/2009 (3:03 am)
Wow the screenshots look fantastic, thanks for sharing them Steven. We should see some really amazing things coming from Torque 3D
#6
04/04/2009 (5:23 am)
The blogs still not up but I did notice the first two parts of the South Pacific Demo are uploaded on vimeo, and they go into some of the details: http://vimeo.com/groups/1622/videos/3992810 and http://vimeo.com/groups/1622/videos/3992822 .
#7
04/04/2009 (7:32 am)
The videos look great.I was pleasantly surprized at the detail and the physics of it.
#8
04/04/2009 (8:04 am)
Huzzar for a terrain noise brush! Physics look good too.
#9
Come on GG we want our new toys :) muahaha
04/04/2009 (8:26 am)
Yeah I've had a look at the Videos J.C. and can't wait til the beta is released so that we can have a look and play with it ourselves.Come on GG we want our new toys :) muahaha
#10
/Gonna go play with some nukes until release *hint to hurry* :P
04/04/2009 (9:47 am)
Yeah, awesomeness on the video's oo.. GIVE US BETA !! :)/Gonna go play with some nukes until release *hint to hurry* :P
#11
04/04/2009 (11:36 am)
So that looks great. I'm satisfied. Beta please. ;)
#12
And finally at least a hint of how the terrain system works and the new editor althought the pure weakness of the camera makes it pretty hard to see much of the editor sadly.
I really like what I saw of the new editor capabilities (not only what tools there are directly but the kind of stuff the editor finally allows)
04/04/2009 (2:13 pm)
Looks very interesting on the video :)And finally at least a hint of how the terrain system works and the new editor althought the pure weakness of the camera makes it pretty hard to see much of the editor sadly.
I really like what I saw of the new editor capabilities (not only what tools there are directly but the kind of stuff the editor finally allows)
#13
04/04/2009 (10:23 pm)
Will the skybox exist in the release? If possible, please add more high quality skyboxes into T3D. ;)
#14
The terrain now uses what i'm calling "id map blending" as opposed to the old opacity map methods. We only store one material id at each pixel in the map... in the shader we work out the blend amount automatically by looking at the neighboring ids. This is what allows us to support many more terrain layers without the cost of needing another 8bit channel of opacity data.
So you loose explicit blending control... but you gain resolution and number of layers to paint with. I think its an acceptable trade off although i'm sure someone will whine about it. ;)
And yes... it supports per-layer detail maps.
04/05/2009 (5:08 pm)
I just got access to these forums... so i'm playing catch up with posts.The terrain now uses what i'm calling "id map blending" as opposed to the old opacity map methods. We only store one material id at each pixel in the map... in the shader we work out the blend amount automatically by looking at the neighboring ids. This is what allows us to support many more terrain layers without the cost of needing another 8bit channel of opacity data.
So you loose explicit blending control... but you gain resolution and number of layers to paint with. I think its an acceptable trade off although i'm sure someone will whine about it. ;)
And yes... it supports per-layer detail maps.
#15
04/05/2009 (5:17 pm)
@ysun - There is a new SkyBox object which replaces the old Sky object. I think there will be a couple of new stock sky texture sets from the new demos.
#16
04/05/2009 (5:22 pm)
@Tom, that's really good news, thanks for sharing.
#17
That's excellent news. =)
04/05/2009 (8:55 pm)
Quote:
And yes... it supports per-layer detail maps.
That's excellent news. =)
#18
That's an awesome idea! If someone must keep blending at a specific percentage, he or she could always create a new material. With which one would also be able to achieve much better results anyway.
Plus, we can always create new algorithms for blending different materials. (as in: not continous / linear blending).
I think you guys made a great choice, and I'm really excited to take a look at the terrain from the inside. :)
04/05/2009 (11:33 pm)
Quote:We only store one material id at each pixel in the map... in the shader we work out the blend amount automatically by looking at the neighboring ids.
That's an awesome idea! If someone must keep blending at a specific percentage, he or she could always create a new material. With which one would also be able to achieve much better results anyway.
Plus, we can always create new algorithms for blending different materials. (as in: not continous / linear blending).
I think you guys made a great choice, and I'm really excited to take a look at the terrain from the inside. :)
#19
The idea came from this Oblivion mod and its only really possible because i'm using this new id map.
04/06/2009 (12:07 am)
Thanks Konrad.... yea thats the basic idea... "blending" terrain materials is a weird game-tech concept and not anything you really see in reality.Quote:Plus, we can always create new algorithms for blending different materials. (as in: not continous / linear blending).What i'm planning on doing this week is to use the alpha channel of the detail texture us to mask the blend. This should give an artist controlled patterned fringe between material transitions.
The idea came from this Oblivion mod and its only really possible because i'm using this new id map.
#20
I was thinking that further blending methods would be available if the terrain always used normal maps (and why wouldn't we want that with such a great engine). Blending normal maps too would definitely add to realism.
But, yeah, that alpha channel blending on that mod page looks really awesome. I am crossing fingers that it makes it into the first beta. :)
04/06/2009 (12:23 am)
Thank YOU, Tom! :) Great idea to use the alpha channel of the detail texture.I was thinking that further blending methods would be available if the terrain always used normal maps (and why wouldn't we want that with such a great engine). Blending normal maps too would definitely add to realism.
But, yeah, that alpha channel blending on that mod page looks really awesome. I am crossing fingers that it makes it into the first beta. :)
Torque 3D Owner Steven Garcia