Author Topic: Some of my walls are invisable eventhough there are no bushes overlapping  (Read 5314 times)

cactusfrog

  • Posts: 390
  • Turrets: +678/-176
    • tremulous fun server offical site
I hope there is an easy solution to this because it is really bugging me.  There are a few spots in my map where the wall is invisable or black and i dont know why.  I have had this problem before because two brushes were overlapping but this time its not the case and i dont know how to fix it.  Please help!

n.o.s.brain

  • Posts: 339
  • Turrets: +1337/-24
    • youtube page
this can happen if your structural brushes are clipped off grid:

the only way i know how to solve it is to make new brushes, or clip them better.

Odin

  • Spam Killer
  • *
  • Posts: 1767
  • Turrets: +113/-204
    • My Website
Probably not related but you might be using the shader version of that fence texture on the floor.

This makes it transparent and might be causing a leak, and ending the compile prematurely.

seeeker

  • Posts: 122
  • Turrets: +19/-5
select a small grid size
select the area
press ctrl+G (i think) to snap vertexes to the selected grid.

cactusfrog

  • Posts: 390
  • Turrets: +678/-176
    • tremulous fun server offical site
its alined everything to the grid but i am still see through the walls there and  in that place and a few other places.
« Last Edit: August 18, 2008, 07:45:21 am by cactusfrog »

n.o.s.brain

  • Posts: 339
  • Turrets: +1337/-24
    • youtube page
i would personally texture every surface but the top of the grate brush with player clip or weapon clip, that might fix it...

Zero Ame

  • Posts: 329
  • Turrets: +33/-15
    • NOS
I don't have a clue why the walls or the floor of the hall are clear but I agree with Odin about the fence texture. Try building something under it(if you havn't already), such as a small area with pipes and wires and/or supports. This helps get rid of the leak and adds good looks to your map for detail.

cactusfrog

  • Posts: 390
  • Turrets: +678/-176
    • tremulous fun server offical site
there is something built underneath the wire shader and it not snapping to the gid isn't the problem.  It seams to be random what is see through and not see through in one part of my map i have a vent and from the outside it looks textured but when you are inside it is invisible and looks as if you are walking on air.  My only guess is to delete everything that isn't showing up and re make it. Or maybe try a different compiler then the build in one in gtkradent. maybe q3build. 

Zero Ame

  • Posts: 329
  • Turrets: +33/-15
    • NOS
its probably just some bad brushes, happens sometimes.

cactusfrog

  • Posts: 390
  • Turrets: +678/-176
    • tremulous fun server offical site
fuck! Ok all rebuild everything  :-[
EDIT i rebuilt part of it tested it and its still broken wtf
« Last Edit: August 19, 2008, 07:23:20 am by cactusfrog »

doomagent13

  • Posts: 506
  • Turrets: +18/-18
Something like this could be caused by using a hint brush where the non-visible sides are not hint or skip.

Zero Ame

  • Posts: 329
  • Turrets: +33/-15
    • NOS
ok, select EVERYTHING in your entire map, copy it, open a new map, paste it all in, save and compile, sometimes that fixes stuff, always worked for me :D

Taiyo.uk

  • Posts: 2309
  • Turrets: +222/-191
    • Haos Redro
Something like this could be caused by using a hint brush where the non-visible sides are not hint or skip.

Indeed!

Press Ctrl+H to toggle hint brushes in Radiant, and remember that common/skip is broken in some versions. This skip shader works:

Code: [Select]
// ydnar: skip works like quake 2 hint: it doesn't generate bsp splits
// use on sides of hint brushes where you don't want bsp splits or portals
// add this to your common.shader file

textures/groundsource/hintskip
{
   qer_editorimage textures/common/skip.tga
   qer_nocarve
   qer_trans 0.30
   surfaceparm nodraw
   surfaceparm nonsolid
   surfaceparm structural
   surfaceparm trans
   surfaceparm noimpact
   surfaceparm skip
}

cactusfrog

  • Posts: 390
  • Turrets: +678/-176
    • tremulous fun server offical site
I ended up rebuilding the glitched part and it ended up a lot better.  But if i ever have that glitch again I will select the brush and press ctrl h hopefully that will work.