Search found 9 matches

by pokaku
Sat Aug 25, 2018 12:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Quick Menu Imagebutton Issue [Solved]
Replies: 1
Views: 457

Re: Quick Menu Imagebutton Issue

After tinkering around with the tutorial I found that I needed to add this line of code to make sure the quick menu is always on top.

Code: Select all

init python:
    config.overlay_screens.append("quick_menu")

default quick_menu = True
by pokaku
Sat Aug 25, 2018 12:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Quick Menu Imagebutton Issue [Solved]
Replies: 1
Views: 457

Quick Menu Imagebutton Issue [Solved]

It's been a while (years) since I've worked on my vn, so I'm getting used to all this again. My issue is that my imagebuttons are not appearing. I'm not receiving an error message. I put all of this together some years ago, following an imagebutton tutorial and it worked fine. But since I moved the ...
by pokaku
Sat Apr 16, 2016 10:22 am
Forum: I am an Artist
Topic: Sprite Artist [Open]
Replies: 3
Views: 948

Re: Sprite Artist

Added some more examples:

A wip of a character from my VN :
Image

A panel from a webcomic I'm working on:
Image
by pokaku
Fri Apr 08, 2016 8:26 pm
Forum: I am an Artist
Topic: Sprite Artist [Open]
Replies: 3
Views: 948

Re: Sprite Artist

Lucky1443 wrote:So cute! I'm sure you'll be commissioned right away :3
Thank you.
by pokaku
Fri Apr 08, 2016 2:42 pm
Forum: I am an Artist
Topic: Sprite Artist [Open]
Replies: 3
Views: 948

Sprite Artist [Open]

Hello, I'm an artist looking to work for a small vn project. If you're interested, contact me via PM or post to this thread. I only accept Paypal. Package: Green Price : $20 Includes: 1 Pose 1 Outfit 3 Basic Expressions Package: Red Price : $40 Includes: 2 Pose 2 Outfit 5 Expressions Samples: http:...
by pokaku
Mon Feb 08, 2016 12:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Deleting Imagebutton Save File Issue
Replies: 0
Views: 263

Deleting Imagebutton Save File Issue

I am having a problem with deleting save files. I can delete only one file and all the slots have to be filled to delete a file. How do I fix this. Here's my code. ## SAVE / LOAD SLOT init -2 python: y=0 screen load_save_slot: $ file_text = "% s\n %s" % (FileTime(number, empty="Empty ...
by pokaku
Wed Jan 20, 2016 1:07 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Rotating image on title screen
Replies: 5
Views: 2443

Re: Rotating image on title screen

Thank you very much for the help everyone, I have it exactly how I wanted it.


I fixed the size of the images and now they turn perfectly. My only problem is that I can't get them around the image I want them to rotate around. I get to a certain point and I can't move it over any further.
by pokaku
Wed Jan 20, 2016 10:41 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Rotating image on title screen
Replies: 5
Views: 2443

Re: Rotating image on title screen

I have the images turning but they're moving all over the screen. I just want to them turn in one place. Here's what I did: transform forward_spin: subpixel True rotate 0 linear 60.0 rotate 360 repeat transform back_spin: subpixel True rotate 0 linear 60.0 rotate -360 repeat How would I make them st...
by pokaku
Tue Jan 19, 2016 8:14 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Rotating image on title screen
Replies: 5
Views: 2443

[SOLVED] Rotating image on title screen

I am very confused on how to use ATL with screens. I've looked around at tutorials but I don't really understand them. I want to have my title screen logo animated. I specifically want to have a image continuously rotate clockwise and another rotate counter clockwise. How do I go about doing this? I...