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:
authorClément Foucault <foucault.clem@gmail.com>2017-06-09 00:10:28 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-06-09 02:15:17 +0300
commite45ebec335f4b13835bce2c21aeb4ecd8726a02a (patch)
tree35fe268c57572f3de7283fccc8c51004517675dd /source/blender/editors/object
parent974c0cc7b68da305a21c551c4298e38940e301ad (diff)
Probes: Add more parameters.
Add Min Max for box, and distance for sphere falloff. Same for parallax. Add clip distances.
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_add.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index f8f27f8785e..26a1f56bff9 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -154,9 +154,9 @@ static EnumPropertyItem field_type_items[] = {
/* copy from rna_probe.c */
static EnumPropertyItem probe_type_items[] = {
- {PROBE_CAPTURE, "CAPTURE", ICON_FORCE_FORCE, "Capture", ""},
- {PROBE_PLANAR, "PLANAR", ICON_FORCE_FORCE, "Planar", ""},
- {PROBE_CUSTOM, "CUSTOM", ICON_FORCE_FORCE, "Custom", ""},
+ {PROBE_CUBE, "CUBE", ICON_MESH_UVSPHERE, "Sphere", ""},
+ // {PROBE_PLANAR, "PLANAR", ICON_MESH_PLANE, "Planar", ""},
+ // {PROBE_IMAGE, "IMAGE", ICON_NONE, "Image", ""},
{0, NULL, 0, NULL, NULL}
};