Fix #134201: Invalid doc-string for Scene.ray_cast

This commit is contained in:
Campbell Barton
2025-02-07 11:17:57 +11:00
parent 69b5124e09
commit 7bdffe124a

View File

@@ -276,7 +276,7 @@ void RNA_api_scene(StructRNA *srna)
/* Ray Cast */
func = RNA_def_function(srna, "ray_cast", "rna_Scene_ray_cast");
RNA_def_function_ui_description(func, "Cast a ray onto in object space");
RNA_def_function_ui_description(func, "Cast a ray onto evaluated geometry in world-space");
parm = RNA_def_pointer(func, "depsgraph", "Depsgraph", "", "The current dependency graph");
RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED);