Search found 3 matches

by MXaliant
Fri Mar 01, 2024 1:31 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Need to know how to put text in drag image
Replies: 4
Views: 287

Re: Need to know how to put text in drag image

https://www.renpy.org/doc/html/drag_drop.html#examples The first example has two displayables within a window. In your case I suspect it will look something liek: # . . . draggroup: drag: fixed: fit_first True add "some image" text "Some Image" align (0.5, 0.5) thank you so much...
by MXaliant
Fri Mar 01, 2024 9:54 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Need to know how to put text in drag image
Replies: 4
Views: 287

Re: Need to know how to put text in drag image

Ocelot wrote: Fri Mar 01, 2024 9:27 am Drag takes an arbitrary displayable, so you can pu a fixed containing your image and text
Can you help give me an example on how I can do that? Sorry, it's just I'm pretty new to Ren'py.
by MXaliant
Fri Mar 01, 2024 9:05 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Need to know how to put text in drag image
Replies: 4
Views: 287

[Solved] Need to know how to put text in drag image

So, I want to put text over an image that's gonna be dragged around. This can be easily fixed by just editing the text into the image, but because I plan to make an educational game where people will arrange words into proper sentences, the image files will be easily crowded. Is there a way to add t...