It's been a while since I asked another dumb question.For one of my newer projects, I'm making the switch to SCI1.1. My progress came to a hault rather quick, however.
I drew a picture using the given tools in SCI companion, saved it, made a room out of it, and started the game. When the game switches to the picture I drew, only a small portion of the picture is drawn. The ego cannot move except when clicking directly next to him (moving him a small amount), and the OnMeCheck feature I coded triggers on the entire picture instead of just ctlTEAL like I coded it to.
The attached pictures are (blurry cell phone photos of) the picture as I drew it, and how it appears in-game.
Is this a common problem? Did I mess up somewhere in the drawing process?
Here's my feature code if that helps.
(instance theDoor of Feature
(properties
x 80
y 30
noun N_DOOR
OnMeCheck ctlTEAL
)
)
And in the room init
(theDoor init: setOnMeCheck: ctlTEAL)
I'm using Sierra syntax.
I literally just started SCI1.1 this week, so my apologies if this seems like a dumb thing to ask. I couldn't find anything on it in the forums or tutorial pages
I tried rebuilding the resources, thinking it was maybe loading an unfinished version of the picture, but it still only draws a small number of the instructions.
Also, this was typed on my phone as my work computer doesn't have Internet, so please forgive me for any weird formatting in this post.If you need any more information to help, let me know and I'll do my best to provide it. As I mentioned I'm on my phone and this is all I can provide as of now.