Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

An alternative to Radiant?

Page: 1 of 1
 B00mer
07-17-2004, 2:58 PM
#1
I have 3ds max, and have used it to make maps for other games. I DONT want to learn a whole new program, as 3ds max confuses me enough. There has to be a plugin for 3ds max that makes it compatible with JA.... and is it possible to make models in 3ds max 6 and then import them into Radiant?
 Jedi_Vogel
07-17-2004, 4:22 PM
#2
Yeah, if you can export md3 or ASE
 Lil Killa
07-17-2004, 5:51 PM
#3
Get gmax and the tempest plugin for it. With it you can export your models as .maps or as .md3 models. (MD3 model exporter appears to be fecked though)
 B00mer
07-17-2004, 10:35 PM
#4
i saw a tut on exporting to jk2... but is this possible with jk3

I want to use 3ds max
 Jedi_Vogel
07-18-2004, 9:03 AM
#5
Should be fine as some technology hasn't advanced really since JK2 :)
 WadeV1589
07-18-2004, 2:08 PM
#6
3DS Max 6 can export to ASE which you can load up in Radiant, you will still have to caulk hull your map though and should really learn shaders to create the proper shaders for models that you want to act as maps
 B00mer
07-18-2004, 4:05 PM
#7
Originally posted by WadeV1589
3DS Max 6 can export to ASE which you can load up in Radiant, you will still have to caulk hull your map though and should really learn shaders to create the proper shaders for models that you want to act as maps
now that im more familiar with Radiant.... ill just make my plants and trees and other scenery in it. Thanks Guys.
 mslaf
07-18-2004, 7:30 PM
#8
I would drop Radiant a long time ago as it’s one of the worst tools I’ve ever seen and had to work with. The editor itself is not bad but the Gtk GUI is the real "challenge". I don’t understand the idea of bringing slow and painful Linux GUI to Windows that offers much better and faster solutions. On the other hand I’m happy that it’s Gtk not QT.

There’s no doubt that it takes several times quicker and more comfortable to model the whole level in programs like 3ds but finally you always need to import your work in Radiant and then the real problems start:)

I was trying to find an alternative to Radiant but nobody could answer the question what happen if I import the whole level as an ASE model. http://www.splashdamage.org/index.php?name=pnPHPbb2&file=viewtopic&t=8754&sid=50ac879b9726fdb06429387899e75c75)

It took me about 3 days to model the whole map in 3D modeling program and almost 2 months to do the same thing in Radiant. The funny part is that at the end I reached q3map2 compilation limits and had to convert half of my map back to models.

I think, than the most effective way of building maps today is to create basic structures in Radiant and next to fill the map with ASE models; but you have already came to this yourself;)

Don’t try to use the MD3 exporter from Gmax because it’s broken.
This one should help you if you really need to create MD3 models:
http://www.splashdamage.org/index.php?name=pnPHPbb2&file=viewtopic&t=7161&highlight=md3+export&sid=ecb8ba7a8e052c88c0de34b9abf3aa14)
But you only need them for moving elements like doors, platforms etc. ASE models are useful for static geometry.

ASE models are vertex lit by default but if you want them lightmapped you need to add the
“spawnflags” “4” key to the misc_model entity. See the fist SD link for details.

Alternatively you can modify entities_mp.def or/and entities_sp.def files and change the line:

/*QUAKED misc_model (0.2 0.2 1) (-16 -16 -16) (16 16 16)

to:

/*QUAKED misc_model (0.2 0.2 1) (-16 -16 -16) (16 16 16) x autoclip lightmap

The new "lightmap" button will appear in misc_model entity window and you won’t need to modify/learn/create any shaders.
 B00mer
07-18-2004, 9:53 PM
#9
Im used to modeling everything in 3dsmax... then bringing it to another program to create weapon spawns, player spawns, vehicle spawns, add trees, plants, shaders, etc. This is different. It actually makes it much easier. You just have to know how to use it. I am really wanting to make my own terrain, because i can easily add tunnels, ditches, river-beds, custom trees, plants, and lati-da on top without struggle. modeling just comes naturally to me. but its looking like that will lower fps. -_- i hate not using 3ds max. so........

....I have decided just to use easygen, but suck at it from the start. I was told there was a link here to an "UBER AWESOME" tutorial on using easygen. can i have that link?
 Lil Killa
07-18-2004, 10:02 PM
#10
http://map-review.com/index.php?page=tutorial_view&id=12)


I have a few quick questions on vertex lighting...

What is it? how does it work? Does it ignor all of the shadows in my map and ignor all of my ent lights?
 mslaf
07-19-2004, 5:15 AM
#11
Originally posted by Lil Killa
http://map-review.com/index.php?page=tutorial_view&id=12)


I have a few quick questions on vertex lighting...

What is it? how does it work? Does it ignor all of the shadows in my map and ignor all of my ent lights?


Fist of all you don’t need to use vertex lit (...lighted) terrain as long as you have to. There’s a problem with the fog on lightmapped terrain with more that two layers and the vertex lighted terrain is the solution. That’s why rgoer has chosen it for his example.

In lightmap you have a map of light assigned to every surface. It’s like an additional bitmap data (imagine it as an additional tga changel/or another shader stage) but in lower resolution. The resolution is controlable by _lighmapscale key. If you have let’s say a bitMAP in size of 512x512 you will have a lightMAP in size 16x16 with shadows and light stretched to the size of your bitMAP. This is the lightmap. Am I right?
The vertex light is based on object tessellation structure (triangles) and strictly depends on it. If you create a very dense object like a grid (surface) you can achieve the same effect like using the lightmap by the cost of higher number of surfaces (triangles). See the example:

Normal brush surface, only two triangles can be shadowed / illuminated
http://www.mslaf.com/tutorials/tessgrid1.jpeg)

More dense grid, and more detailed shadows / lights
http://www.mslaf.com/tutorials/tessgrid2.jpeg)

Very dense grid, and very detailed shadows / light
http://www.mslaf.com/tutorials/tessgrid3.jpeg)

And a sample how the “X” shadow will be created (hand painted sorry)
http://www.mslaf.com/tutorials/tessgridshadow.jpeg)

VL it’s faster for the renderer, because there’s less light/shadow data to process but offers lower quality and is sometimes very difficult to control. You don’t know how the brush will be split into triangles by q3map2’s tjunction procedure.

In bright areas you will see no big difference between lightmap and vertex light.

The best way to see what is vertex light in reality without going into technical details is to change the setup option from “lightmap” to “vertex light”. And...you can always try old good Jedi Knight to see it too;). The vertex lighted surfaces are illuminated in the same way as anything else so your light entities will work with them.

Try to experiment with them yourself to see the advantages and disadvantages.

Sample vertex shaders are here:
http://www.splashdamage.org/index.php?name=pnPHPbb2&file=viewtopic&t=8643&sid=c7c6f93b130c78b1083fd2fecb1eafc1)
 shukrallah
07-22-2004, 4:15 PM
#12
Hmmm.. the modelling software doesnt have all the enitity info that GTK has... so I wouldnt use that.

You could use JK2 Radiant, with some playing around you can have all the JKA enitities in it but it cant load PNG textures, so...

I used it untill they released GTK 1.4.0 (Because 1.3.0 or whatever wouldnt run)

JK2 Radiant is basically the same as GTK though... anyways, do you think they will release a new GTK?

I also hate learning a new program :( Im so used to the Radaint programs that, well.. even gmax doesnt make much sense (i only used it for like 5 mins though.)
Page: 1 of 1