Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_camera.c
| Context not available. | |||||
| RNA_def_property_ui_text(prop, "Stereo", ""); | RNA_def_property_ui_text(prop, "Stereo", ""); | ||||
| /* flag */ | /* flag */ | ||||
| prop = RNA_def_property(srna, "show_frustum", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", CAM_SHOW_FRUSTUM); | |||||
| RNA_def_property_ui_text(prop, "Show Frustum", "Show a visualization of frustum in Game Engine"); | |||||
| RNA_def_property_update(prop, NC_CAMERA, NULL); | |||||
| prop = RNA_def_property(srna, "show_limits", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_limits", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", CAM_SHOWLIMITS); | RNA_def_property_boolean_sdna(prop, NULL, "flag", CAM_SHOWLIMITS); | ||||
| RNA_def_property_ui_text(prop, "Show Limits", "Draw the clipping range and focus point on the camera"); | RNA_def_property_ui_text(prop, "Show Limits", "Draw the clipping range and focus point on the camera"); | ||||
| Context not available. | |||||