Tumgik
flowerlaneno18 · 17 days
Text
I reinstalled Prison Architect to take a good break from drawing and noticed how incredibly small everything is, much smaller than I remembered. Looked up how to change it and had to click for nearly a minute to make it big enough.
Then it dawned on me that it probably isn't actually that small, it's just that back then I wasn't as partially sighted.
Now I'm afraid that everything in my game is HUGE and people will think I made a massive coding mistake and immediately close the tab.
I don't know anyone who could check for me and the possibility makes me so, so nervous.
Maybe I should include that in the game's description? That the dev has really bad eyesight and that's the reason should everything be gigantic?
Ahhh.
0 notes
flowerlaneno18 · 18 days
Text
I realise that my dev log is a bit different from other IF because I'm mostly doing character art right now but it's still part of the development. Heh.
This time it's a middle-of-the-process screenshot instead of a basically finished one.
Tumblr media
0 notes
flowerlaneno18 · 19 days
Text
Tumblr media
Tenant No. 5, Séamus.
Casually leaving this here to immortalise how many layers that took (there are more, they just didn't fit into the window).
0 notes
flowerlaneno18 · 24 days
Note
Thank you so much!
I'm such an idiot, I forgot [data-tags] and fiddled with #titleblock (+ variants) alone, even tried a whole java setup and wondered why that still didn't do it.
Praise the Twine-Wizard!
I hope I'm not bothering you, please ignore me if I do. I've been playing around with your Space/Tech template, all modifications went well but I can't get the titleblock background-image to change for specific passages. I've tried everything, updateBackground java, different functions, setting up separate elements, etc. Nothing works. Please enlighten me, wise Twine-Wizard, on how to solve this mystery.
Hi there!
If you're trying to change the CSS of an element for just one passage you have multiple options:
add the CSS code in the relevant passage with the HTML block < style ></ style > (without the spaces)
use a passage tag to link the change between your passage and your StyleSheet
Changing in Passage
Simply add your code in the relevant passage. For this template, it would be something like:
<style> #titleblock { background-image: url('your-image.png); } </style>
Using tags
The -technically better- method. Especially if you want one image for multiple passages.
Add a tag to the relevant passage.
Tumblr media
(let's pretend widget is called forest for the sake of here)
Then in your stylesheet, BELOW the original element (anywhere below as long as it is below):
[data-tags~='forest'] #titleblock { background-image: url('your-image.png); }
And that should do it!
You can also find the longer explanation of this second option in the Customising Passages with Tags Chapter in my SugarCube guide.
6 notes · View notes
flowerlaneno18 · 24 days
Text
Everything went so well with coding, then boom, four hours later and I'm still stuck on the same damn thing.
Deep breaths, deep breaths.
Edit: I missed a ; One single ; !! Edit 2: Didn't matter, wasn't the problem after all Edit 3: God help me I'm in coding hell
0 notes