-=-=-

-Fixed normalmap depth parameter
-Fixes to DirAccess on Windows
-Double click on resource dock will open them
-Fixes to doc generator (should make github wiki on class list more up to date)
This commit is contained in:
Juan Linietsky 2014-10-14 19:44:41 -03:00
parent 94e35ef316
commit cd218b8c09
10 changed files with 35 additions and 26 deletions

View file

@ -102,6 +102,8 @@ RID Rasterizer::_create_shader(const FixedMaterialShaderKey& p_key) {
} else {
scode+="NORMALMAP=tex( fmp_normal_tex,"+uv_str+").xyz * vec3(2.0,2.0,1.0) - vec3(1.0,1.0,0.0);\n";
}
scode+="NORMALMAP_DEPTH=fmp_normal;\n";
code+=scode;
}