At the moment the atmosphere of the game is left up to the scene description and the imagination of the player. We could create some images that represent locations or evoke the imagination to align to the scene feels. Then add another parameter to the Plot.md that links to the image in a static/img folder. The plot-updates.py script would then need to be modified to parse this as well and add it to the generates scene JavaScript files.
For separation of concerns and maintaining modularity we'd prob want to create a sceneLoader.js which would handle the display of these images relevant to the scene. That file could handle future scene relative styles and dynamic content such as audio etc.
At the moment the atmosphere of the game is left up to the scene description and the imagination of the player. We could create some images that represent locations or evoke the imagination to align to the scene feels. Then add another parameter to the
Plot.md
that links to the image in astatic/img
folder. Theplot-updates.py
script would then need to be modified to parse this as well and add it to the generates scene JavaScript files.For separation of concerns and maintaining modularity we'd prob want to create a
sceneLoader.js
which would handle the display of these images relevant to the scene. That file could handle future scene relative styles and dynamic content such as audio etc.