Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-embree3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-embree3
Commits
2b7ff6de
Commit
2b7ff6de
authored
11 years ago
by
Dalai Felinto
Browse files
Options
Downloads
Patches
Plain Diff
Bake-API: increase cage extrusion/ray distance limit
Fix to include in 2.71 (asked via BlenderArtist)
parent
ecb79051
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/blender/editors/object/object_bake_api.c
+2
-2
2 additions, 2 deletions
source/blender/editors/object/object_bake_api.c
with
2 additions
and
2 deletions
source/blender/editors/object/object_bake_api.c
+
2
−
2
View file @
2b7ff6de
...
@@ -1267,8 +1267,8 @@ void OBJECT_OT_bake(wmOperatorType *ot)
...
@@ -1267,8 +1267,8 @@ void OBJECT_OT_bake(wmOperatorType *ot)
"Extends the baked result as a post process filter"
,
0
,
64
);
"Extends the baked result as a post process filter"
,
0
,
64
);
RNA_def_boolean
(
ot
->
srna
,
"use_selected_to_active"
,
false
,
"Selected to Active"
,
RNA_def_boolean
(
ot
->
srna
,
"use_selected_to_active"
,
false
,
"Selected to Active"
,
"Bake shading on the surface of selected objects to the active object"
);
"Bake shading on the surface of selected objects to the active object"
);
RNA_def_float
(
ot
->
srna
,
"cage_extrusion"
,
0
.
0
,
0
.
0
,
1
.
0
,
"Cage Extrusion"
,
RNA_def_float
(
ot
->
srna
,
"cage_extrusion"
,
0
.
0
f
,
0
.
0
f
,
FLT_MAX
,
"Cage Extrusion"
,
"Distance to use for the inward ray cast when using selected to active"
,
0
.
0
,
1
.
0
);
"Distance to use for the inward ray cast when using selected to active"
,
0
.
0
f
,
1
.
0
f
);
RNA_def_string
(
ot
->
srna
,
"cage_object"
,
NULL
,
MAX_NAME
,
"Cage Object"
,
RNA_def_string
(
ot
->
srna
,
"cage_object"
,
NULL
,
MAX_NAME
,
"Cage Object"
,
"Object to use as cage, instead of calculating the cage from the active object with cage extrusion"
);
"Object to use as cage, instead of calculating the cage from the active object with cage extrusion"
);
RNA_def_enum
(
ot
->
srna
,
"normal_space"
,
normal_space_items
,
R_BAKE_SPACE_TANGENT
,
"Normal Space"
,
RNA_def_enum
(
ot
->
srna
,
"normal_space"
,
normal_space_items
,
R_BAKE_SPACE_TANGENT
,
"Normal Space"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment