Search found 15 matches

by l1997
Fri Sep 21, 2018 12:04 am
Forum: We are a Commercial Project looking for Partners
Topic: Looking for an intermediate or advanced renpy programmer.
Replies: 3
Views: 1138

Re: Looking for an intermediate or advanced renpy programmer.

What exactly do challenging parts entail? It would be much better if you could include that in your post and the required mechanics.
by l1997
Thu Sep 20, 2018 11:59 pm
Forum: Creator Discussion
Topic: How does publishing work?
Replies: 1
Views: 901

How does publishing work?

I am planning on making my own visual novel. I can both write and program my stories. Can someone explain to me in detail the fundraising process work? How and which website works and what is the process? Ex. Patreon, Kickstarter. And finally what is the process to get published? How to do it by you...
by l1997
Thu Mar 15, 2018 7:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Combine Displayables for Drag
Replies: 2
Views: 417

Re: Combine Displayables for Drag

Tried a "Fixed". Doesnt work with Drag because it always resets the position to the fixed parameter.
by l1997
Thu Mar 15, 2018 8:40 am
Forum: Ren'Py Questions and Announcements
Topic: Combine Displayables for Drag
Replies: 2
Views: 417

Combine Displayables for Drag

I want an Image and a Text displayable to be combined and act as a drag item. The combination should be both overlapping. So, I made a function like this with HBox: def makedropitem(txt): x = HBox("frame.jpg",txt) return x where txt is the text displayable. I call this from my drag group a...
by l1997
Wed Jan 24, 2018 11:04 am
Forum: Ren'Py Questions and Announcements
Topic: Drag and Drop Screen not reloading[Solved]
Replies: 3
Views: 551

Re: Drag and Drop Screen not reloading

I solved it. Anyways, thanks for the help. I solved it by simply redeclaring the draggroup again in the main code before calling the screen. This ensured that everytime the screen was called, the draggroup was empty and refilled with my dynamic text. $BigPuzzle=DragGroup() call screen drag_drop_scre...
by l1997
Wed Jan 24, 2018 10:43 am
Forum: Ren'Py Questions and Announcements
Topic: Drag and Drop Screen not reloading[Solved]
Replies: 3
Views: 551

Re: Drag and Drop Screen not reloading

In my drop logic, I need to remove the items if dropped in the correct order. Wouldn't this method reload all the drag items which includes the ones removed?
by l1997
Mon Jan 22, 2018 9:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Drag and Drop Screen not reloading[Solved]
Replies: 3
Views: 551

Drag and Drop Screen not reloading[Solved]

I have made a screen with a drag and drop component which takes dynamic data. screen drag_drop_screen(): # A map as background. add "bgmarket" python: for i in range(0, len(inputs)): if not (BigPuzzle.get_child_by_name("name%s"%inputs[templist[i]][1]) or (inputs[templist[i]][1] i...
by l1997
Sat Jan 06, 2018 2:49 am
Forum: Ren'Py Questions and Announcements
Topic: Call Screen working twice
Replies: 3
Views: 519

Call Screen working twice

I have defined a screen as: screen send_detective_screen(abc): python: #To test whether the screen call or the loop is running twice print("len(inputs)") add "bgmarket" # A map as background. python: for i in range(0, len(inputs)): temp = Drag(d=Text("[inputs[%d]]"%i, s...
by l1997
Fri Jan 05, 2018 10:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Delete dropped object
Replies: 3
Views: 1137

Re: Delete dropped object

I tried doing what you said. I have defined my draggroup as this: (inputs is a list from which I take the string that has to become the text which will be the child. (I want it to be a displayable which has both text and image but not able to do it as of yet :D ) draggroup: for i in range(0, len(inp...
by l1997
Fri Jan 05, 2018 7:11 am
Forum: Ren'Py Questions and Announcements
Topic: Delete dropped object
Replies: 3
Views: 1137

Delete dropped object

I want the object which is dropped to the drag to be deleted from the screen. Is that possible?
by l1997
Thu Jan 04, 2018 8:44 am
Forum: Ren'Py Questions and Announcements
Topic: Draggable Wrapped Text Image
Replies: 0
Views: 232

Draggable Wrapped Text Image

I want to make a draggable object which contains a background image and a dynamic text which wrapped inside the image area. Something like:
attac.png
attac.png (2.07 KiB) Viewed 231 times
Can anyone help?
by l1997
Mon Jan 01, 2018 1:18 am
Forum: Ren'Py Questions and Announcements
Topic: Dynamic Drag Items
Replies: 2
Views: 451

Re: Dynamic Drag Items

Thanks. That example worked like a charm.
by l1997
Sat Dec 30, 2017 7:59 am
Forum: Ren'Py Questions and Announcements
Topic: Dynamic Drag Items
Replies: 2
Views: 451

Dynamic Drag Items

I want to make 'n' number of draggable objects in a draggroup. I have tried creating objects of drag and draggroup and adding them in a python code: x = draggroup(None, None) temp = drag() for x in range(0,n): temp.name="a%d"%x x.add(temp) It keeps giving me an error - Name Error: name dra...