(Noob here) How do I configure a library?

My changes don’t appear to save, and I am unable to directly edit. Specifically, I am attempting to utilize RenderCam, and cannot save the NearZ and FarZ. Although I can alter the properties and values in the script, the changes don’t save when everything else does. What am I doing wrong?

You can not edit a libraries files, you can do temporary changes but they will be removed as soon as you restart your editor.

Most libraries have config settings but how you interact with it depends on the implementation. So you would have to check the API for the particular library you are using.

Some uses properties: DefSave do defsave.appname = "my_awesome_game"

Other use function calls: DefOS do defos.set_maximized(bool_value)

Rendercam’s camera object/script is the one holding all the setting, if you are not explicitly using a camera it will use a fallback_cam which have hard coded values. If you want to change these values you will have to use the camera object, import the camera.scriptor camera.go into your collection that is using a camera and on that object you will see properties you can change.

7 Likes

Thank you very much!