ARG
#13415 posted by Breezeep_ on 2013/12/22 03:50:59
Trenchbroom is being buggy on me! where the hell is the new update for the editor?!
Re: Arg
#13416 posted by Breezeep_ on 2013/12/22 04:22:46
disregard that, I've got it to work for now.
Uhm
#13417 posted by SleepwalkR on 2013/12/22 08:42:08
Please use the TrenchBroom thread to report problems, and if you don't give me bug reports, you won't see your problems fixed.
And Remember
#13418 posted by ijed on 2013/12/22 14:16:43
SleepwalkR is doing this as a hobby, for fun.
In any case, how goes TBv2?
I see you knocking down issues on the devtrack at a decent pace :)
Ijed
#13419 posted by SleepwalkR on 2013/12/22 16:38:53
It's going well, but there is still a lot to do... I can't really say when I can release something.
Tyrann's Qbsp Finally Works For Me! Worldcraft Rounding Finally Gotme
#13420 posted by Qmaster on 2013/12/23 00:10:34
I got it to work. Had to compile as bsp2 but hey I have 80000 already and have at least 50000 to go before I sleep. And polys to go before I sleep.
I found out why Tyrann's qbsp "seemed" like it wasn't working. It stops outputting to the console after upteenhundred "WARNING: Brush with duplicate plane" warnings but still compiles.
And on that note. Is there an rmf to .map converter that won't round my smaller brushes' verts to x.0?
Thanks For The Suggestion Spirit But It Was My Fault Not An Actual Bug
#13421 posted by Qmaster on 2013/12/23 00:12:29
Que Elaborado
#13422 posted by ijed on 2013/12/23 00:18:49
Ok, I'll stop now.
MergeAll Compile Step QBSP
#13423 posted by Qmaster on 2013/12/23 04:46:29
What does WARNING 21 : Too many edges in TryMerge mean? I don't understand what this means in the docs:
// =====================================================================================
// TryMerge
// If two polygons share a common edge and the edges that meet at the
// common points are both inside the other polygons, merge them
// Returns NULL if the faces couldn't be merged, or the new face.
// The originals will NOT be freed.
// =====================================================================================
IDK
#13424 posted by ijed on 2013/12/23 04:53:36
Maybe it means use better compilers?
Huh
#13425 posted by Rick on 2013/12/23 05:23:26
Are you trying to compile a map that is full of errors?
Looks Like It's My Turn
#13426 posted by skacky on 2013/12/23 11:14:04
I added quite a bit of stuff in my map and hit the MAX_MAP_ENTITIES with TyrUtils 0.6, so I switched to a more recent version (0.10). The map compiles fine, however areas that receive no illumination are now fullbright, and this even with a minlight setup in worldspawn. Is there a way around it or am I doomed to use very dim lights with very big radii?
Here's a shot so show you: http://i.imgur.com/O9ll73V.jpg
Well
#13427 posted by ijed on 2013/12/23 12:02:25
Do you have some delay 3/4 lights in there? From what I can see you must have some errant lights in there somewhere, the other alternative being a very powerful sunlight value, but I can't see any sky in the screenshot.
Also, minlight isn't required - not having it, or a value of 0 count as the same.
#13428 posted by skacky on 2013/12/23 12:28:35
I only use delay 5 lights, and the issue is present in the whole level, not just in this room. My sunlight value is 80.
I tried recompiling with TyrUtils 0.14 but no luck either.
"...Trying To Compile A Map That Is Full Of Errors?"
#13429 posted by Qmaster on 2013/12/23 19:18:59
Full of warnings. Usually about duplicate planes from rounding (we hates the rounding precious yes we do) and the occasional brush face with an invalid normal.
No Beep Message?
#13430 posted by Rick on 2013/12/23 20:09:28
Maybe I'm missing something obvious, but is there a way (in vanilla Quake, no QC) to display a centerprint message without triggering that "beep beep" sound? I've tried triggers and relays with the sound set to "0", but it doesn't work.
Rick
#13431 posted by mfx on 2013/12/23 20:28:51
try sounds/misc/null.wav.
Maybe that helps?
Mfx
That's a Quoth-only functionality.
Grmpf
#13433 posted by mfx on 2013/12/23 20:41:05
Hack!
#13434 posted by ijed on 2013/12/23 20:49:28
Replace the beep sound with a copy of misc/null.wav
#13435 posted by Qmaster on 2013/12/23 23:56:01
Create a new brush entity called "trigger_multiple". Set a new key: "noise" with a value of: "misc/null.wav" Set your message. Give the key sounds a value of 0.
#13436 posted by Qmaster on 2013/12/23 23:57:09
Sorry that last key is "sounds" with a value of "0".
Noise
#13437 posted by Rick on 2013/12/24 16:38:24
Thanks much :)
noise = misc/null.wav
Works. Why?
I'm going to try it on a relay next to see if I can save a model.
Why? For Rick
#13438 posted by - on 2013/12/24 18:46:36
from triggers.qc
void() multi_trigger =
{
...
if (self.noise)
sound (self, CHAN_VOICE, self.noise, 1, ATTN_NORM);
...
}
multi_trigger is a function that is called when the trigger is touched/killed/used. the code plays whatever the trigger's 'noise' key is. the 'sounds' key/value that editors expose just switch (in the entity definitions for the triggers themselves) between several hardcoded noise values (which are also precached by the trigger)
Oh
#13439 posted by - on 2013/12/24 18:47:34
if you set a 'sounds', your 'noise' will get overwritten, so don't
|