diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-28 17:59:29 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-28 17:59:29 +1000 |
commit | 4e2881efa1eaf9f0356cb5f8d98a80b786a0f6a7 (patch) | |
tree | 24fce09585f5d6d42772d56d284abbda0b4b9896 /bindgen | |
parent | e5b3f7a823f5e73cb17456d4b9bdd59760fb18ed (diff) |
ser deser light
Diffstat (limited to 'bindgen')
-rw-r--r-- | bindgen/rust/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindgen/rust/src/lib.rs b/bindgen/rust/src/lib.rs index 4963d8c..49d0391 100644 --- a/bindgen/rust/src/lib.rs +++ b/bindgen/rust/src/lib.rs @@ -56,7 +56,7 @@ impl SerializableScene { } } -#[derive(Debug, Clone)] +#[derive(Debug, Clone, Serialize, Deserialize)] pub enum Light { Point(ffi::PointLight), Directional(ffi::DirectionalLight), |