 Lol
#1193 posted by HeadThump on 2004/02/21 14:42:35
Bob has bitch tits -- nope just a set of extremely cold nipples.
 Btw, LTH
#1194 posted by HeadThump on 2004/02/21 14:57:45
glad to see you on the func_board. Does that mean you are you mapping as much as you code these days?
 Lol
#1195 posted by LTH on 2004/02/21 20:37:43
You could say that.
 AguirRe
#1196 posted by Mike Woodham on 2004/02/22 12:24:10
Could you just explain the use of _sun_mangle for me: how are the two parameters used?
 Mike
#1197 posted by LTH on 2004/02/22 12:31:43
x = yaw, y = pitch, z = placeholder.
 LTH
#1198 posted by Mike Woodham on 2004/02/22 12:58:04
Thanks. I understand yaw and pitch but not 'placeholder'.
Sorry to be dense but I have never used _sunlight before: I am only trying it now after reading some comments by AguirRe in this forum.
I have a rather large (high) set of mountains in FMB12 and lighting them is proving difficult.
As a by the way, is 256 the largest texture size that can be used in Quake1 - I can see some pretty obvious tiling?
 Mike:
#1199 posted by metlslime on 2004/02/22 13:06:30
'Placeholder' means just put zero; i believe it's needed becuase the compiler expects a vector, but only actually has a use for two or the numbers.
Re: texture size, first, check this: http://www.celephais.net/stuff/texturefaq.htm
Second, try scaling the texture up, or using more lighting variation to break up the large surfaces. (I know, "lighting variation" is contrary to the whole _sunlight aesthetic. But you could still put in some subtle point lights or antilights to create the needed variety.)
 Mike
#1200 posted by LTH on 2004/02/22 13:07:20
placeholder is exactly that - it doesn't do anything, it's just necessary to convince the compile utils that you're using a 3-part vector.
 Metl
#1201 posted by LTH on 2004/02/22 13:09:19
Doesn't HalfLife allow texture randomization? How does it do it?
 Thanks Guys
#1202 posted by Mike Woodham on 2004/02/22 13:12:18
(or gals!)
 Ha Ha Metlslime Is A Girl!
#1203 posted by czg on 2004/02/22 13:25:27
 Yes, Metlslime Is A Grrl
#1204 posted by R.P.G. on 2004/02/22 13:31:25
More proof!
<goetz> http://www.celephais.net/quake/
<goetz> metlslime is that u ?
<goetz> i thought u were male
<metlslime> i'm a hot japanese girl
<Auhsan> woa
<Auhsan> I love you metlslime
<metlslime> this explains why i never get laid, after all, who wants to have sex with a hot japanese girl?
<metlslime> nobody. I wish i was one of those skinny white computer geeks. They get all the sex.
<Auhsan> from their hands
<metlslime> heh
* metlslime cries
 Help Again
#1205 posted by Mike Woodham on 2004/02/22 13:36:57
I am just trying to see the difference between using _sunlight or placed light entities in a map.
For some reason, light does not seem to work on my trial, 2055 brush, map. Here is the readout: -
4361 planes 87220
4252 vertexes 51024
2387 nodes 57288
6 texinfo 240
3888 faces 77760
13244 clipnodes 105952
1202 leafs 33656
4808 marksurfaces 9616
17010 surfedges 68040
8506 edges 34024
2 textures 130652
lightdata 0
visdata 0
entdata 176
File: ter2.bsp
3 entities read, 1 are lights, 3888 faces
Light: 0.0%, Elapsed: 0:00
Light: 100.0%, Elapsed: 0:01
lightdatasize: 0
0 switchable light styles
Elapsed time : 0:02
BspBuild [Light complete]
The numbers mean nothing to me. Can anybody spot my (probably obvious) error?
 It Looks...
#1206 posted by necros on 2004/02/22 14:05:11
like you only put on light entity:
3 entities read, 1 are lights, 3888 faces
sunlight needs: _sunlight # for intensity, and _sun_mangle x x x for direction.
 Having An Interesting, Albeit Annoying Problem...
#1207 posted by necros on 2004/02/22 14:06:39
there's a phantom brush which has cropped up in my map which i'm trying to get rid of...
the problem is, the brush doesn't appear in gtkradiant, but when i compile the map, it is there, in quake. there's nothing wrong with the brush, other than it is a phantom... it's not super deformed or huge or any of the common problems...
any suggestions?
 Mike
#1208 posted by aguirRe on 2004/02/22 14:12:14
Look in the readme for sunmangle details and some recommendations to start with. The third number, the "placeholder", isn't required at all anymore in my tools (but is accepted for compatibility).
In your log printout, lightdatasize is 0, which means that there is no lights generated at all (the map is probably pitch black). There is one light entity (sunlight isn't counted as a light entity), but for some reason is doesn't generate any measurable light.
Send me the zipped map+wad and what tool arguments you're using and I'll try to find out why it doesn't work.
 Texture Randomisation
#1209 posted by Preach on 2004/02/22 14:13:13
I believe texture randomisation in HL is done with a naming convention, so to randomise between 3 textures you would name them
-0texname
-1texname
-2texname
and so on. They probably have to have the same dimentions for this to work.
 Necros
#1210 posted by pjw on 2004/02/22 14:15:45
Dumb question probably, but you're sure you don't have anything either filtered or hidden in-editor?
If not, try brush-cleanup (either plugins or a button, depending on what version you're running).
You could also try hiding all brushes in the area (select one-by-one and hide) and then doing a "select touching" in the empty space that's left and see if you get anything selected?
 Simultaneous Posting
#1211 posted by aguirRe on 2004/02/22 14:19:43
Necros, sunlight only needs the intensity value to be activated, the sunmangle is default 0,-90 (pretty boring zenith sunlight, though). Check out the readme for this and other related information.
As for the phantom brush, is it solid, i.e. not penetrable with rockets/player?
 Texture Randomization...
#1212 posted by metlslime on 2004/02/22 14:22:59
i believe it works as preacher said, but as for the implementation, i think it subdivides the face into polygons (just like quake does, actually) and each polygon of the original face gets one of the 3 textures in preacher's example.
 Necros:
#1213 posted by metlslime on 2004/02/22 14:27:52
like you only put on light entity ... sunlight needs: _sunlight # for intensity, and _sun_mangle x x x for direction.
necros: _sunlight and _sun_mangle are keys, not entities. They both go in the worldspawn entity.
 Lights
#1214 posted by Mike Woodham on 2004/02/22 14:46:43
I have two test maps: one is lit via the _sunlight key in the worldspawn entity, and the other is lit by one light entity with no entry in the worldspawn.
I wanted to see how _sunlight lit the map as I saw some advantages when considering how many light entities my map would require (it is not a big map in terms of depth and width, but is fairly high due to some pesky mountains.
I will take up aguirRe's offer to see what he can tell me. Thanks everyone.
 AguirRe
#1215 posted by Mike Woodham on 2004/02/22 15:23:29
E-mail on its way. I forgot to mention that I use Bsp Editor.
 Metl
#1216 posted by LTH on 2004/02/22 20:35:59
You mean it would be possible to write a bsp compiler for Quake that does it, then?
AguirRe, Riot, whoever, get to it! :P
 Responses:
#1217 posted by necros on 2004/02/22 23:17:27
pjw: yep, i'm sure it's not just filtered or something :)
aguire: It appears to be a completly solid brush, but it doesn't appear to be a extension from another one, because i've removed all the brushes surrounding it, and this brush is still there, in the middle of nowhere...
metlslime: yeah, i meant to say: "it looks like you only put one light" -- forgot the e.
|