detail.vbsp error model

jister

Newbie
Joined
Sep 16, 2005
Messages
45
Reaction score
0
hey i'm trying to make some new sprite textures, but when i use a custom model in the vbsp it show the error model?
if i copy a model already used in the detail.vbsp it shows alright, but when i change the path to my model it doesn't work?
my model shows up ok if i use it as a static_prop, and my path is correct in the detail.vbsp.

any ideas how this is possible?

NOT WORKING:
Code:
THmix
   {
      "density" "500.0"

      Group1
      {
         "alpha" "1.0"

            Model1
         {
            "upright" "1.0"
            "model" "models/plants/kapradi05big.mdl"
            "amount" "0.2"
         }
         Model2
         {
            "sprite" "288 288 128 128 512"
            "spritesize" "0.5 0.0 29 29"
            "spriterandomscale" "0.7"
            "amount" "0.8"
            "detailOrientation" "2"
         }
      }
   }
WORKING:
Code:
THmix
   {
      "density" "500.0"

      Group1
      {
         "alpha" "1.0"

            Model1
         {
            "upright" "1.0"
            "model" "models/props_foliage/cattails.mdl"
            "amount" "0.2"
         }
         Model2
         {
            "sprite" "288 288 128 128 512"
            "spritesize" "0.5 0.0 29 29"
            "spriterandomscale" "0.7"
            "amount" "0.8"
            "detailOrientation" "2"
         }
      }
   }

THX
 
Post in the editing & development section.
 
Back
Top