I'm sorry, this is probably a stupid question. I'm trying to program a little thingy with getting away with using as little of code as possible. Variables are mostly what I need, and those are easy to manage in Ren'Py.
Code: Select all
screen study:
tag mains
imagemap:
ground "Teaching.png"
hotspot (110, 110, 100, 100) hovered Show(Desc) unhovered Hide(Desc) action SetVariable(morning, Skill1) Code: Select all
screen Desc:
add "skill1describ.png" at x1I would be okay with using "text", but that's not the issue.
The issue is, I get error message on line where the hotspot is, saying "name "Desc" is not defined."
It's probably me using the Show() wrong, I am a noob with programing and I failed to search for solutions so far, any ideas?