Skip to content

Remove Asset Slots Brain Dump

Created: 2026-05-19 07:25 UTC

Raw Notes

The Asset Slot system was primarily used in the past to match visuals to scenes. With the new workflow, there is no Visual Matching being performed. Instead, visuals (images) are to be generated using a Image Gen model when the scenes are generated. And then, if required, the user can replace the image with an uploaded one from the Scene Editor.

From this perspective, remove the Asset Slot system, including the Scene slot UX and slot aware visual generation.

Context Diagram

flowchart LR
  legacySlots["Asset Slot system"] --> matching["Visual Matching"]
  matching --> sceneVisuals["Scene visuals"]
  workflow["New scene generation workflow"] --> imageGen["Image Gen model"]
  imageGen --> sceneImages["Generated scene images"]
  userOverride["Scene Editor upload/replace"] --> sceneImages
  legacySlots -. remove .-> target["Target: no Scene slot UX or slot-aware generation"]
  target --> workflow