Search found 4 matches

by lxknvlk
Sun Jul 25, 2021 12:50 pm
Forum: Ren'Py Questions and Announcements
Topic: xray glass to move with cursor?
Replies: 1
Views: 987

xray glass to move with cursor?

Hi. I want to implement an xray minigame. The question is - is it possible in renpy? I have managed to do it in other game engines. There are 2 layers of images. One is revealed only when a circle is over it (only the area under circle is revealed.) And the circle moves with cursor. - layer 1: norma...
by lxknvlk
Fri Oct 26, 2018 4:09 am
Forum: Ren'Py Questions and Announcements
Topic: imagemap now working
Replies: 0
Views: 228

imagemap now working

Heres the code below. I see only one button in left upper corner, and it is not clickable. Please help, could not find anything useful in docs or forums or anywhere else. screen wardrobemenu: imagemap: ground "w.png" hover "wh.png" hotspot (8, 200, 78, 78) clicked Return("on...
by lxknvlk
Wed Feb 14, 2018 5:15 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to show updating text box
Replies: 3
Views: 736

Re: How to show updating text box

Thanks! It is working.
by lxknvlk
Wed Feb 14, 2018 3:30 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to show updating text box
Replies: 3
Views: 736

[SOLVED] How to show updating text box

So i have a day parameter in my game. I want it to be shown at the top left corner of my game. Here is my game screen: http://i66.tinypic.com/2zhe713.png I made the day counter appear like this: $ui.frame(xpos=0, ypos=0) $ui.text("Day [day]") But how do i change its style? I havent found a...