Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/RNA_define.h
| Show First 20 Lines • Show All 454 Lines • ▼ Show 20 Lines | void RNA_def_property_collection_funcs(PropertyRNA *prop, | ||||
| const char *begin, | const char *begin, | ||||
| const char *next, | const char *next, | ||||
| const char *end, | const char *end, | ||||
| const char *get, | const char *get, | ||||
| const char *length, | const char *length, | ||||
| const char *lookupint, | const char *lookupint, | ||||
| const char *lookupstring, | const char *lookupstring, | ||||
| const char *assignint); | const char *assignint); | ||||
| void RNA_def_property_collection_flag(PropertyRNA *prop, int flag); | |||||
| void RNA_def_property_srna(PropertyRNA *prop, const char *type); | void RNA_def_property_srna(PropertyRNA *prop, const char *type); | ||||
| void RNA_def_py_data(PropertyRNA *prop, void *py_data); | void RNA_def_py_data(PropertyRNA *prop, void *py_data); | ||||
| void RNA_def_property_boolean_funcs_runtime(PropertyRNA *prop, | void RNA_def_property_boolean_funcs_runtime(PropertyRNA *prop, | ||||
| BooleanPropertyGetFunc getfunc, | BooleanPropertyGetFunc getfunc, | ||||
| BooleanPropertySetFunc setfunc); | BooleanPropertySetFunc setfunc); | ||||
| void RNA_def_property_boolean_array_funcs_runtime(PropertyRNA *prop, | void RNA_def_property_boolean_array_funcs_runtime(PropertyRNA *prop, | ||||
| BooleanArrayPropertyGetFunc getfunc, | BooleanArrayPropertyGetFunc getfunc, | ||||
| ▲ Show 20 Lines • Show All 110 Lines • Show Last 20 Lines | |||||