Blender Git Loki

Git Commits -> Revision b263aef

Revision b263aef by Dalai Felinto (master)
September 19, 2011, 19:55 (GMT)
TexFace to Material Settings big patch

Summary:
========
The idea here is to move the texface options into the material panel.
For images with the change please visit:
http://code.blender.org/index.php/2011/09/bge-material-texface-changes

1 - Some of the legacy problems 2.49 and 2.5x has with the texface system:
==========================================================================
1.1) Shadow, Bilboard and Halo are mutual exclusive (in the code), yet you can
select a face to be more than one mode.
1.2) Sort only works for blend Alpha yet it's an option regardless of the
Transparency Blend you pick.
1.3) Shared doesn't affect anything in BGE.
1.4) ObColor only works for Text objects (old bitmap texts) when using Texture
Face Materials. (not address yet, I so far ignored obcolor)

2 - Notes:
============
2.1) Now "Use Face Textures" in material Option panel will work in Multitexture
even if there is no texture channel.

2.2) In FaceTexture mode it will use TexFace all the time, even if you don't
check the "Use Texture Face" option in the UI. It's a matter of decision, since
the code for either way is there. I decided by the solution that makes the
creation of a material fast - in this mode the user doesn't need to mess with
textures or this "Use Texture Face" option at all. I'm not strong in my opinion
here. But I think if we don't have this then what is the point of the Texture
Face mode?

2.3) I kept references for tface only when we need the image, UV or the tiling
setting. It should help later when/if we split the Image and UV layers from the
tface struct (Campbell and Brecht proposal).

3 - Changes in a Nutshell:
==========================
3.1) "Texture Face" panel (in the Mesh/Object Data panel) no longer exists. Those settings are all part of the material properties, visible when Game Render is set.

3.2) "Texture Face" Shading mode (in the Render panel) is now called �??Single Texture�?, it needs a material for special settings (e.g. Billboard, Alpha Sort, �?�).

3.3) New options in the Material Panel
* Shadeless option in the Material panel is now supported for all three Shading modes.
* Physics is now toggleable, this is the old Collision option.
* Two Side (on) is now called Back Culling (off).
* Alpha Sort is one of the Alpha options, together (and mutually exclusive) to Alpha Blend, Alpha Clip, Add and Opaque (i.e. solid).
* Shadow, Billboard and Halo are grouped in the �??Face Orientation�? property.
* "Face Textures" and "Face Textures Alpha" (under Options) can be used for all but GLSL shading mode (to be supported in GLSL eventually).
* The backend in the game engine is still the same as before. The only changes are in the interface and in the way you need to think your materials. The bottomline is: It�??s no longer possible to share materials between faces that do not share the same game properties.

4 - Acknowledgment:
==================
Mike Pan for the design discussions, and testing along the whole development process.
Vitor Balbio for the first hands-on code with the interface changes. That helped me a lot to push me into work on that.
Benoit Bolsee and Brecht van Lommel for patch review (* no one reviewed the whole patch, or the latest iteractions, so I still hold liability for any problems).
Blender artists that gave feedback and helped testing the patch.

Patch review and original documentation can be found here:
http://wiki.blender.org/index.php/User:Dfelinto/TexFace
http://codereview.appspot.com/4289041/

Commit Details:

Full Hash: b263aefb0ec4d6b46b4cd7e4b15ac7f99af4c59e
SVN Revision: 40372
Parent Commit: 80ad78d
Lines Changed: +1112, -435

44 Modified Paths:

/release/scripts/startup/bl_ui/properties_data_mesh.py (+0, -47) (Diff)
/release/scripts/startup/bl_ui/properties_material.py (+30, -1) (Diff)
/release/scripts/startup/bl_ui/space_info.py (+1, -0) (Diff)
/source/blender/blenkernel/BKE_blender.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_image.h (+3, -0) (Diff)
/source/blender/blenkernel/BKE_material.h (+6, -0) (Diff)
/source/blender/blenkernel/intern/cdderivedmesh.c (+0, -46) (Diff)
/source/blender/blenkernel/intern/customdata.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/DerivedMesh.c (+1, -17) (Diff)
/source/blender/blenkernel/intern/image.c (+17, -0) (Diff)
/source/blender/blenkernel/intern/material.c (+485, -0) (Diff)
/source/blender/blenkernel/intern/subsurf_ccg.c (+0, -15) (Diff)
/source/blender/blenloader/intern/readfile.c (+25, -0) (Diff)
/source/blender/editors/mesh/editmesh_mods.c (+0, -4) (Diff)
/source/blender/editors/space_image/space_image.c (+1, -1) (Diff)
/source/blender/editors/space_logic/logic_ops.c (+37, -0) (Diff)
/source/blender/editors/space_view3d/drawmesh.c (+79, -49) (Diff)
/source/blender/editors/space_view3d/drawobject.c (+9, -8) (Diff)
/source/blender/editors/space_view3d/view3d_view.c (+1, -1) (Diff)
/source/blender/editors/uvedit/uvedit_ops.c (+0, -2) (Diff)
/source/blender/gpu/GPU_draw.h (+3, -3) (Diff)
/source/blender/gpu/GPU_material.h (+3, -2) (Diff)
/source/blender/gpu/intern/gpu_draw.c (+41, -39) (Diff)
/source/blender/gpu/intern/gpu_material.c (+1, -1) (Diff)
/source/blender/makesdna/DNA_material_types.h (+35, -0) (Diff)
/source/blender/makesdna/DNA_meshdata_types.h (+2, -0) (Diff)
/source/blender/makesrna/intern/rna_material.c (+63, -0) (Diff)
/source/blender/makesrna/intern/rna_mesh.c (+6, -0) (Diff)
/source/blender/makesrna/intern/rna_scene.c (+1, -1) (Diff)
/source/blender/modifiers/intern/MOD_uvproject.c (+0, -1) (Diff)
/source/gameengine/Converter/BL_BlenderDataConversion.cpp (+108, -75) (Diff)
/source/gameengine/Ketsji/BL_BlenderShader.cpp (+4, -4) (Diff)
/source/gameengine/Ketsji/BL_BlenderShader.h (+2, -2) (Diff)
/source/gameengine/Ketsji/BL_Material.cpp (+1, -2) (Diff)
/source/gameengine/Ketsji/BL_Material.h (+5, -4) (Diff)
/source/gameengine/Ketsji/KX_BlenderMaterial.cpp (+46, -41) (Diff)
/source/gameengine/Ketsji/KX_BlenderMaterial.h (+2, -1) (Diff)
/source/gameengine/Ketsji/KX_PolygonMaterial.cpp (+14, -12) (Diff)
/source/gameengine/Ketsji/KX_PolygonMaterial.h (+2, -2) (Diff)
/source/gameengine/Rasterizer/RAS_IPolygonMaterial.cpp (+34, -15) (Diff)
/source/gameengine/Rasterizer/RAS_IPolygonMaterial.h (+17, -8) (Diff)
/source/gameengine/Rasterizer/RAS_IRasterizer.h (+5, -9) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp (+18, -18) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.h (+2, -2) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021