Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_main.c
| Show First 20 Lines • Show All 122 Lines • ▼ Show 20 Lines | |||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(meshes) | RNA_MAIN_LISTBASE_FUNCS_DEF(meshes) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(metaballs) | RNA_MAIN_LISTBASE_FUNCS_DEF(metaballs) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(movieclips) | RNA_MAIN_LISTBASE_FUNCS_DEF(movieclips) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(nodetrees) | RNA_MAIN_LISTBASE_FUNCS_DEF(nodetrees) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(objects) | RNA_MAIN_LISTBASE_FUNCS_DEF(objects) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(paintcurves) | RNA_MAIN_LISTBASE_FUNCS_DEF(paintcurves) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(palettes) | RNA_MAIN_LISTBASE_FUNCS_DEF(palettes) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(particles) | RNA_MAIN_LISTBASE_FUNCS_DEF(particles) | ||||
| # ifdef WITH_POINT_CLOUD | |||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(pointclouds) | RNA_MAIN_LISTBASE_FUNCS_DEF(pointclouds) | ||||
| # endif | |||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(scenes) | RNA_MAIN_LISTBASE_FUNCS_DEF(scenes) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(screens) | RNA_MAIN_LISTBASE_FUNCS_DEF(screens) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(shapekeys) | RNA_MAIN_LISTBASE_FUNCS_DEF(shapekeys) | ||||
| # ifdef WITH_GEOMETRY_NODES | # ifdef WITH_GEOMETRY_NODES | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(simulations) | RNA_MAIN_LISTBASE_FUNCS_DEF(simulations) | ||||
| # endif | # endif | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(sounds) | RNA_MAIN_LISTBASE_FUNCS_DEF(sounds) | ||||
| RNA_MAIN_LISTBASE_FUNCS_DEF(speakers) | RNA_MAIN_LISTBASE_FUNCS_DEF(speakers) | ||||
| ▲ Show 20 Lines • Show All 246 Lines • ▼ Show 20 Lines | MainCollectionDef lists[] = { | ||||
| "LightProbe", | "LightProbe", | ||||
| "rna_Main_lightprobes_begin", | "rna_Main_lightprobes_begin", | ||||
| "LightProbes", | "LightProbes", | ||||
| "LightProbe data-blocks", | "LightProbe data-blocks", | ||||
| RNA_def_main_lightprobes}, | RNA_def_main_lightprobes}, | ||||
| # ifdef WITH_HAIR_NODES | # ifdef WITH_HAIR_NODES | ||||
| {"hairs", "Hair", "rna_Main_hairs_begin", "Hairs", "Hair data-blocks", RNA_def_main_hairs}, | {"hairs", "Hair", "rna_Main_hairs_begin", "Hairs", "Hair data-blocks", RNA_def_main_hairs}, | ||||
| # endif | # endif | ||||
| # ifdef WITH_POINT_CLOUD | |||||
| {"pointclouds", | {"pointclouds", | ||||
| "PointCloud", | "PointCloud", | ||||
| "rna_Main_pointclouds_begin", | "rna_Main_pointclouds_begin", | ||||
| "Point Clouds", | "Point Clouds", | ||||
| "Point cloud data-blocks", | "Point cloud data-blocks", | ||||
| RNA_def_main_pointclouds}, | RNA_def_main_pointclouds}, | ||||
| # endif | |||||
| {"volumes", | {"volumes", | ||||
| "Volume", | "Volume", | ||||
| "rna_Main_volumes_begin", | "rna_Main_volumes_begin", | ||||
| "Volumes", | "Volumes", | ||||
| "Volume data-blocks", | "Volume data-blocks", | ||||
| RNA_def_main_volumes}, | RNA_def_main_volumes}, | ||||
| # ifdef WITH_GEOMETRY_NODES | # ifdef WITH_GEOMETRY_NODES | ||||
| {"simulations", | {"simulations", | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||