Make Camaro reflective and add wheel to fix warning in menu.

This commit is contained in:
zturtleman 2018-05-03 22:53:37 +00:00
parent 48c243de89
commit e059428dae
3 changed files with 58 additions and 49 deletions

Binary file not shown.

View file

@ -10,18 +10,16 @@ models/players/camaro/body
{ {
// map textures/effects/tinfx2b.tga // map textures/effects/tinfx2b.tga
map textures/reflect/reflect.jpg map textures/reflect/reflect.jpg
tcGen environment tcGen environment
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
{ {
map models/players/camaro/body.tga map models/players/camaro/body.tga
blendFunc blend alphaGen const 0.8
blendFunc blend
depthWrite depthWrite
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
} }
//DEFAULT - BLUE //DEFAULT - BLUE
@ -32,18 +30,16 @@ models/players/camaro/body_blue
{ {
// map textures/effects/tinfx2b.tga // map textures/effects/tinfx2b.tga
map textures/reflect/reflect.jpg map textures/reflect/reflect.jpg
tcGen environment tcGen environment
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
{ {
map models/players/camaro/body_blue.tga map models/players/camaro/body_blue.tga
blendFunc GL_SRC_ALPHA GL_ONE_MINUS_SRC_ALPHA alphaGen const 0.8
blendFunc blend
depthWrite depthWrite
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
} }
//DEFAULT - GREEN //DEFAULT - GREEN
@ -54,43 +50,39 @@ models/players/camaro/body_green
{ {
// map textures/effects/tinfx2b.tga // map textures/effects/tinfx2b.tga
map textures/reflect/reflect.jpg map textures/reflect/reflect.jpg
tcGen environment tcGen environment
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
{ {
map models/players/camaro/body_green.tga map models/players/camaro/body_green.tga
blendFunc GL_SRC_ALPHA GL_ONE_MINUS_SRC_ALPHA alphaGen const 0.8
blendFunc blend
depthWrite depthWrite
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
} }
//DEFAULT - RED //DEFAULT - RED
models/players/camaro/body_green models/players/camaro/body_red
{ {
{ {
// map textures/effects/tinfx2b.tga // map textures/effects/tinfx2b.tga
map textures/reflect/reflect.jpg map textures/reflect/reflect.jpg
tcGen environment tcGen environment
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
{ {
map models/players/camaro/body_red.tga map models/players/camaro/body_red.tga
blendFunc GL_SRC_ALPHA GL_ONE_MINUS_SRC_ALPHA alphaGen const 0.8
blendFunc blend
depthWrite depthWrite
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
} }
//DEFAULT - GREEN //DEFAULT - BLACK
models/players/camaro/body_black models/players/camaro/body_black
@ -98,16 +90,33 @@ models/players/camaro/body_black
{ {
// map textures/effects/tinfx2b.tga // map textures/effects/tinfx2b.tga
map textures/reflect/reflect.jpg map textures/reflect/reflect.jpg
tcGen environment tcGen environment
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
{ {
map models/players/camaro/body_black.tga map models/players/camaro/body_black.tga
blendFunc GL_SRC_ALPHA GL_ONE_MINUS_SRC_ALPHA alphaGen const 0.8
blendFunc blend
depthWrite
rgbGen lightingdiffuse
}
}
//SHARED - GLASS
models/players/camaro/glass
{
{
map textures/reflect/reflect.jpg
tcGen environment
rgbGen lightingdiffuse
}
{
map models/players/camaro/glass.tga
alphaGen const 0.2
blendFunc blend
depthWrite depthWrite
rgbGen lightingdiffuse rgbGen lightingdiffuse
} }
} }

View file

@ -67,7 +67,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define BASETA "missionpack" #define BASETA "missionpack"
#ifndef PRODUCT_VERSION #ifndef PRODUCT_VERSION
#define PRODUCT_VERSION "v0.0.1.0 r219" #define PRODUCT_VERSION "v0.0.1.0 r220"
#endif #endif
#ifndef PRODUCT_DATE #ifndef PRODUCT_DATE