Skip to content

The ".rn" filetype

Lukas edited this page May 11, 2024 · 1 revision

The export format of raynodes was developed over time with a focus on:

  • Readability - Meaning you can humanly read the output and even edit the export directly
  • Low Memory Footprint - Store values only once and efficiently
  • Have a nice interface in the code

The result is the ".rn" format. Its split into multiple section that look like: --Section--

This is necessary as you dont know how many entries each section has. But when loading i know the order of the sections. So in my loading code i can execute my loading step for a specific section as long as iam in the section.

Clone this wiki locally