Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenloader/intern/readfile.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 6,633 Lines • ▼ Show 20 Lines | static void direct_link_scene(FileData *fd, Scene *sce) | ||||
| Sequence *seq; | Sequence *seq; | ||||
| MetaStack *ms; | MetaStack *ms; | ||||
| RigidBodyWorld *rbw; | RigidBodyWorld *rbw; | ||||
| ViewLayer *view_layer; | ViewLayer *view_layer; | ||||
| SceneRenderLayer *srl; | SceneRenderLayer *srl; | ||||
| sce->depsgraph_hash = NULL; | sce->depsgraph_hash = NULL; | ||||
| sce->fps_info = NULL; | sce->fps_info = NULL; | ||||
| sce->customdata_mask_modal = 0; | |||||
| memset(&sce->customdata_mask, 0, sizeof(sce->customdata_mask)); | |||||
| memset(&sce->customdata_mask_modal, 0, sizeof(sce->customdata_mask_modal)); | |||||
| BKE_sound_create_scene(sce); | BKE_sound_create_scene(sce); | ||||
| /* set users to one by default, not in lib-link, this will increase it for compo nodes */ | /* set users to one by default, not in lib-link, this will increase it for compo nodes */ | ||||
| id_us_ensure_real(&sce->id); | id_us_ensure_real(&sce->id); | ||||
| link_list(fd, &(sce->base)); | link_list(fd, &(sce->base)); | ||||
| ▲ Show 20 Lines • Show All 4,868 Lines • Show Last 20 Lines | |||||