Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Hughes <khughes@pacific.edu>2006-06-11 19:35:40 +0400
committerKen Hughes <khughes@pacific.edu>2006-06-11 19:35:40 +0400
commit962c81208b26a8d5b78739c003852465d64bf02c (patch)
tree695400434803f8c299d73e5f0bbdb4d787cd86ce /source/blender/python/api2_2x/Material.c
parent11c70ed57f4be62409d658dea6902ec73f9de406 (diff)
===Python API===
Removed recently added Material API methods getRbFriction() and getRbRestitution(). Erwin had already added attributes rbFriction and rbRestitution, and current API design goal is to eventualy replace all getStuff()/setStuff() with attributes.
Diffstat (limited to 'source/blender/python/api2_2x/Material.c')
-rw-r--r--source/blender/python/api2_2x/Material.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/python/api2_2x/Material.c b/source/blender/python/api2_2x/Material.c
index 02a6152101e..1efff7b329a 100644
--- a/source/blender/python/api2_2x/Material.c
+++ b/source/blender/python/api2_2x/Material.c
@@ -696,10 +696,6 @@ static PyMethodDef BPy_Material_methods[] = {
"() - Return fresnel power for refractions"},
{"getFresnelTransFac", ( PyCFunction ) Material_getFresnelTransFac, METH_NOARGS,
"() - Return fresnel power for refractions factor"},
- {"getRbFriction", ( PyCFunction ) Material_getRigidBodyFriction, METH_NOARGS,
- "() - Return friction for Rigid Body dynamics"},
- {"getRbRestitution", ( PyCFunction ) Material_getRigidBodyRestitution, METH_NOARGS,
- "() - Return restitution for Rigid Body dynamics"},
{"getTextures", ( PyCFunction ) Material_getTextures, METH_NOARGS,
"() - Return Material's texture list as a tuple"},