diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-11-18 19:14:48 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-11-18 19:14:48 -0300 |
commit | 326781f4c9477885057a282e798550f9811f291c (patch) | |
tree | e9da8c33314950e32b96a46dc8cb949a655ea376 /scene/resources | |
parent | 762a76630c15bfa45905a94e94616f6db310632b (diff) | |
parent | 1e36f36357ce2a44ffbb11276f0ce86a0dfe8606 (diff) |
Merge pull request #2636 from TheHX/fixed_material
Bind missing FixedMaterial constants, fixes #2628
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/material.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scene/resources/material.cpp b/scene/resources/material.cpp index bbb2a386f3..55bb4e9073 100644 --- a/scene/resources/material.cpp +++ b/scene/resources/material.cpp @@ -406,7 +406,6 @@ void FixedMaterial::_bind_methods() { BIND_CONSTANT( PARAM_SHADE_PARAM ); BIND_CONSTANT( PARAM_MAX ); - BIND_CONSTANT( TEXCOORD_SPHERE ); BIND_CONSTANT( TEXCOORD_UV ); BIND_CONSTANT( TEXCOORD_UV_TRANSFORM ); @@ -417,6 +416,11 @@ void FixedMaterial::_bind_methods() { BIND_CONSTANT( FLAG_USE_POINT_SIZE ); BIND_CONSTANT( FLAG_DISCARD_ALPHA ); + BIND_CONSTANT( LIGHT_SHADER_LAMBERT ); + BIND_CONSTANT( LIGHT_SHADER_WRAP ); + BIND_CONSTANT( LIGHT_SHADER_VELVET ); + BIND_CONSTANT( LIGHT_SHADER_TOON ); + } |