Prefabs, serialization, scene/actor loading #3
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
[component (resume)]
method - called on all components (including deactivated ones) once all new entities have been consed, right before they are processed this frame(resume)
[component (suspend)]
prepares for conversion(dump-scene)
,(dump-actors)
(make-id)
and(make-weak-pointer)
into the generated code?)Okay so
01b787e7bf
provides(process-load-forms)
and(generate-load-forms)
, which might be able to do the conversion between id-ref and weak-pointer. Test this theory.However, more importantly,
(process-load-forms)
sometimes overwrites data from the source object (specifically lists/conses in the slots of an object). This can probably be fixed by making(replace-in-tree)
produce a copy of each cons rather thanrplac*
-ing things.