#12053 posted by necros on 2012/07/24 04:21:29
did you put a brush in the entity?
Yes
#12054 posted by digs on 2012/07/24 04:22:34
#12055 posted by necros on 2012/07/24 04:40:01
try giving it a positive wait?
Wow! It's Worked!
#12056 posted by digs on 2012/07/24 05:00:08
necros, negke great thanks!
#12057 posted by digs on 2012/07/24 05:22:36
...and this worked without "use"
Maybe A Stupid Question
#12058 posted by madfox on 2012/07/24 23:13:15
Is it clever to change all clip brushes in a map into (one) func_wall?
This for vis time shortening.
#12059 posted by necros on 2012/07/24 23:41:17
clip brushes have no effect on vis afaik. Only brushes that are in hull0 (the visible hull) effect vis.
If you are talking about putting SKIP textured brushes into 1 func_wall, you probably could without it mattering too much since they are invisible anyway (so flickering is irrelevant).
Skip textured brushes in the world DO affect vis since they are only hacked to be invisible, but are still part of hull0.
#12060 posted by necros on 2012/07/24 23:42:20
Also, you can't put only clip textured brushes into a bmodel entity. You need at least one brush that is not clip. Also, the clip brushes will only be solid in the mins/maxs of the visible brushes, so you'd actually need to have two brushes at the opposite extremes of all your clip brushes.
Also...
#12061 posted by metlslime on 2012/07/25 00:57:52
clip brushes actually reduce clipnodes (in many cases), and have no effect on vis or r_speeds, so you're only making things worse by putting them into a func_wall.
Vis Time
#12062 posted by madfox on 2012/07/25 04:16:43
Thanks for advice.
I thought if normal brushes in func_wall overide vistime, then why clipbrushes not.
My last level4 vis is 23h15. I was looking for ways to minimize this, but as it is such a
cramped map I don't think it will work.
#12063 posted by digs on 2012/07/25 13:43:30
Trigger is made ​​from info_notnull has turned a unique. He responds to any entity. Such as boxes of ammunition and fireball :)
I Got My Telly Crossed...
#12064 posted by madfox on 2012/07/28 23:36:34
For some reason all my teleported entities get a wrong angle in their target path in game.
I thought the path_corner would get its angle for showing direction of the entity in game.
I tried the teleporter angle which should be off.
I tried the entity in the teleporter.
They all come teleported in on a wrong angle.
#12065 posted by necros on 2012/07/29 01:57:31
is this with a mod?
Nope
#12066 posted by madfox on 2012/07/29 02:09:43
No, it just happened after some last addons in my map.
Square hide out for monster teleporting in game.
I placed about 10, deleted the angle in func_teleport, made a path_corner to teleport to and gave this the angle I wanted the entity to look at.
They all go right.
Then I added another ten, and to my surprise they all have the angle 0, no matter what angle I give the path_corner.
Then I thought, no also delete the arg "angel" in the func_trigger complete but no matter.
The last 10 decided to go off angle.
I'm chequing if I forgot one path_corner giving an angle, but it looks fairly strange.
#12067 posted by necros on 2012/07/29 02:16:00
if you are using path_corners as the target of teleport triggers, you have to do some extra work because the info_teleport_destination entity does this stuff automatically.
Instead of setting angle, you have to set mangle to a vector with y being the angle you want to be facing.
So if you wanted angle to be 90, you must set mangle to '0 90 '.
#12068 posted by necros on 2012/07/29 02:22:26
er... well, should be '0 90 0'.
Afaik
#12069 posted by madfox on 2012/07/29 02:27:24
Oh me, info_teleport_destination.
Of course, I was so involved in getting waypoints done, that I just forgot and try to use path_corners for teleporting.
In this case it worked, but I'm such a typo.
#12070 posted by necros on 2012/07/29 06:34:26
Is there a command in any quake engine that will output like a manifest of all precached sounds and models?
I'm thinking something that can be parsed and then used to copy files out of a dev folder into a release folder.
Necros
#12071 posted by Mike Woodham on 2012/07/29 09:20:10
I'm not sure if i am reading you right, but if you are looking to make sure that you have removed all unnecessary sounds and models from the pak before release, then I use TexPad to search-all-files for "precache" targeting the folder with all the qc modules in. The output is the form of 'boss.qc(271): precache_model ("progs/boss.mdl");' which I then copy/paste into Excel and use a parsing formula to extract the 'progs/boss.mdl' bit i.e. the bits between the quotes, remove duplicates (built-in command), alpha-sort that column, and then go through each folder in turn to remove all unnecessary entries. It sounds long-winded but only takes a few seconds really.
I have no doubt that you could do that all from within TexPad as it has a macro recorder included, and also allows you to run other programs: I use it for all qc work - editing the modules and then running the compilers from within TexPad using the Run command. Aguire put me on to it many years ago.
#12072 posted by necros on 2012/07/29 09:23:21
Thanks, but what I meant was actually the opposite. An engine command that, after loading the map, displays every precached sound and model in use to the console so I can condump it and parse it so I can cherry pick only sounds and models needed for a specific map for packaging in a pak file.
#12073 posted by negke on 2012/07/29 09:31:44
Darkplaces has the modellist command which does that. Not sure about other engines.
Fitzquake
#12074 posted by Preach on 2012/07/29 10:57:30
fitz has mcache, soundlist and imagelist which I believe do what you want between them
Fantastic
#12075 posted by necros on 2012/07/29 19:15:48
that's exactly what I was looking for! :)
Radiant Texture Load Problem
#12076 posted by wakey on 2012/08/01 15:02:02
hope that kind fit's here.
The problem is, Radiant refuses to load external textures if in q1-mapping mode.
I wrote a own gamepack for a project i joined.
The engine they use utilizes q1 map format and can load both external textures and .wad's.
For mapping i would prefer to use external ones, so i just have to drop them into the folder, and not have to compile a wad everytime i want to try out a new texture fast.
But as soon as you tell the Radiant to do maps in q1 format, he only shows wad's, and refuses to load anything else.
Messed around with the gamepacks .game file trying to figure out how i could workaround this, with no success yet.
Does anybody know a way how to do this?
thx
PS: i'm using Radiant 1.5
Solved
#12077 posted by wakey on 2012/08/01 23:39:13
used the q3.game file as template, now i have some sort of hybrid mode.
But the next problem arises -.-'
The engine currently loads textures directly from /textures folder (like it would be a wad),
but ignores subfolder's.
But the Radiant now only loads files from subfolders.
Does anyone see a way to workaround this?
|