Can scriptable objects be modified by a user or modder, or new ones be created after the build process?
Requirement: The modding will happen after the game “Build” process. With the files available in the client.
How can i design a moddable game in unity to support this ?
- Will the user need the entire game source code ?
- Are scriptable objects stored somewhere in the unity “data” folder in the build. Is it in readable format ?. Can i append new scriptable objects by adding new files in that location ?
- Any working code example is welcome, dropping a single line as answer, and expecting me to figure it out, wont work.
- Details: i don’t need to add complex stuff like custom scenes, models, custom code. I just need to append “data” like scriptable objects. If this is not possible with unity architecture. How do i design the system to use something other than scriptable objects, eg database, excel files, etc.