lumina-iced/test_presentation.ron
Chris Cochrun 2408404ff4 adding ron to slide serializing...
It's possible I could use this as a method of creating slides in text
form. It's vastly easier to implement.
2024-11-11 12:02:42 -06:00

32 lines
692 B
Plaintext

[
(
id: 0,
background: Background(
path: "~/pics/frodo.jpg",
kind: Image
),
text: "This is Frodo",
font: "Quicksand",
font_size: 50,
text_alignment: MiddleCenter,
video_loop: false,
video_start_time: 0.0,
video_end_time: 0.0,
),
(
id: 0,
background: Background(
path: "~/vids/test/chosensmol.mp4",
kind: Video
),
text: "This is Frodo",
font: "Quicksand",
font_size: 50,
text_alignment: MiddleCenter,
video_loop: false,
video_start_time: 0.0,
video_end_time: 0.0,
)
]