Orbital Cookies, Version 02, Linux fix
Turns out that the linux version of python is more picky than the windows or Mac one.
On the function like:
a = turn_text_into_display_object(a, supplied_text)
Where function was:
display_text = font.render(text, True, colour)
Specifically it was throwing an exception during the screen resize loop, whereas the an and supplied text would already exist after being assigned in the first loop. Not so much on linux, which seemed to determine the existence of elements on start to end of file, for some reason.
Assigning values that already would have been assigned on the first pass solved the issue: a = None; supplied_text = 'some correct text';
It also would have solved the problem to not use the function, but direct assign a = font.render(supplied_text, true, colour).
Or just removing from the function the argument of a, and directly returning.
Anyways, here is the concept art of the main character, Pershea, sitting at the cockpit of the fighter craft.
Even if the theme of the jam is more on risk, eating cookies. Poor folks who came up with the theme name.
Files
Get Orbital Cookies
Orbital Cookies
As a daughter of a Pirate Lady, decide your fate and avoid engagement by capturing Cookie-Class SHBB spaceship, Biscuit!
Status | In development |
Author | erikeagrd |
Genre | Visual Novel, Adventure |
Tags | 2D, Female Protagonist, Space |
Languages | English, Spanish; Castilian, Russian |
More posts
- Orbital Cookies Gamejam Launch34 days ago
- Orbital Cookies, Version 03, Pershea Backstory35 days ago
- Orbital Cookies, Read from a text file tutorial (from beginner dev)36 days ago
- Orbital Cookies, Version 02, Game Menu38 days ago
- Orbital Cookies, Version 01 (GameJam)40 days ago
Leave a comment
Log in with itch.io to leave a comment.