Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/scene.c
| Show First 20 Lines • Show All 1,531 Lines • ▼ Show 20 Lines | IDTypeInfo IDType_ID_SCE = { | ||||
| .init_data = scene_init_data, | .init_data = scene_init_data, | ||||
| .copy_data = scene_copy_data, | .copy_data = scene_copy_data, | ||||
| .free_data = scene_free_data, | .free_data = scene_free_data, | ||||
| /* For now default `BKE_lib_id_make_local_generic()` should work, may need more work though to | /* For now default `BKE_lib_id_make_local_generic()` should work, may need more work though to | ||||
| * support all possible corner cases. */ | * support all possible corner cases. */ | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = scene_foreach_id, | .foreach_id = scene_foreach_id, | ||||
| .foreach_cache = scene_foreach_cache, | .foreach_cache = scene_foreach_cache, | ||||
| .foreach_external_file = NULL, | |||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| .blend_write = scene_blend_write, | .blend_write = scene_blend_write, | ||||
| .blend_read_data = scene_blend_read_data, | .blend_read_data = scene_blend_read_data, | ||||
| .blend_read_lib = scene_blend_read_lib, | .blend_read_lib = scene_blend_read_lib, | ||||
| .blend_read_expand = scene_blend_read_expand, | .blend_read_expand = scene_blend_read_expand, | ||||
| .blend_read_undo_preserve = scene_undo_preserve, | .blend_read_undo_preserve = scene_undo_preserve, | ||||
| ▲ Show 20 Lines • Show All 2,072 Lines • Show Last 20 Lines | |||||