]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
misc_model: also support _skin name; also support frame field name
authorRudolf Polzer <divverent@xonotic.org>
Sun, 5 Jun 2011 18:36:09 +0000 (20:36 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Sun, 5 Jun 2011 18:37:37 +0000 (20:37 +0200)
tools/quake3/q3map2/light_trace.c
tools/quake3/q3map2/model.c

index 8e79244e542dbebed1661275af89e0f52ca07397..84e4ab0eef12c97709e15eec8b606f3326cdfd9b 100644 (file)
@@ -1220,7 +1220,11 @@ static void PopulateTraceNodes( void )
                        
                        /* external model */
                        default:
-                               frame = IntForKey( e, "_frame" );
+                               frame = 0;
+                               if(strcmp("", ValueForKey( e, "_frame")))
+                                       frame = IntForKey(e, "_frame");
+                               else if(strcmp("", ValueForKey( e, "frame")))
+                                       frame = IntForKey(e, "frame");
                                model = LoadModel( value, frame );
                                if( model == NULL )
                                        continue;
index 86a87c424fff6fa675fc6d3c777129e4ff80ec19..2b3bb7ed5f0059d5c1cc18862c65e47517b36f08 100644 (file)
@@ -747,7 +747,11 @@ void AddTriangleModels( entity_t *e )
                }
                
                /* get model frame */
-               frame = IntForKey( e2, "_frame" );
+               frame = 0;
+               if(strcmp("", ValueForKey( e2, "_frame")))
+                       frame = IntForKey(e2, "_frame");
+               else if(strcmp("", ValueForKey( e2, "frame")))
+                       frame = IntForKey(e2, "frame");
                
                /* worldspawn (and func_groups) default to cast/recv shadows in worldspawn group */
                if( e == entities )
@@ -888,7 +892,11 @@ void AddTriangleModels( entity_t *e )
                if( shadeAngle > 0.0f )
                        Sys_Printf( "misc_model has shading angle of %.4f\n", shadeAngle );
 
-               skin = IntForKey(e2, "skin");
+               skin = 0;
+               if(strcmp("", ValueForKey( e2, "_skin")))
+                       skin = IntForKey(e2, "_skin");
+               else if(strcmp("", ValueForKey( e2, "skin")))
+                       skin = IntForKey(e2, "skin");
 
                /* insert the model */
                InsertModel( model, skin, frame, transform, remap, celShader, mapEntityNum, castShadows, recvShadows, spawnFlags, lightmapScale, lightmapSampleSize, shadeAngle );