Search found 15 matches

by omranpanda
Thu Sep 23, 2021 12:59 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved!] How to create an infinitely scrolling image?
Replies: 2
Views: 934

Re: How to create an infinitely scrolling image?

Hello guys! I've finally found the solution when I've asked RenpyTom on the Renpy Discord server. Basically you just need to use the xpan ATL (or ypan if you want it to be moving vertically.). Here is the code: transform loopz: xpan -180 linear 5.0 xpan 180 repeat Yup, it's as simple as that ;!; . I...
by omranpanda
Thu Sep 16, 2021 9:06 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved!] How to create an infinitely scrolling image?
Replies: 2
Views: 934

[Solved!] How to create an infinitely scrolling image?

Hello!

As what the subject says, does anyone know how to create an infinitely scrolling image? Something similar to this:
https://youtu.be/8ppKSy8aUZc?t=236
by omranpanda
Sat Sep 11, 2021 3:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Zoom in and center at cursor position? [Solved!]
Replies: 2
Views: 415

Re: Zoom in and center at cursor position?

Hello! As what the title says. Does anyone know of a way to make it so that using the renpy.get_mouse_pos() function and the zoom ATL to zoom in and center at the mouse position? Check this recipe - https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=62550 Thanks for this, however this is ki...
by omranpanda
Fri Sep 03, 2021 3:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Zoom in and center at cursor position? [Solved!]
Replies: 2
Views: 415

Zoom in and center at cursor position? [Solved!]

Hello!

As what the title says.
Does anyone know of a way to make it so that using the renpy.get_mouse_pos() function and the zoom ATL to zoom in and center at the mouse position?
by omranpanda
Fri Sep 03, 2021 3:47 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Remove old dragged when new dragged is placed into the same droppable
Replies: 4
Views: 929

Re: Remove old dragged when new dragged is placed into the same droppable

...Sorry but could you specify which part I should be looking at and explain it with a bit more detail if you may? Khm, the whole thing. You need to store positions for each draggable to know where to put old drag when new one is placed over occupied slot. Then you need to code the action in detect...
by omranpanda
Thu Aug 12, 2021 8:41 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Remove old dragged when new dragged is placed into the same droppable
Replies: 4
Views: 929

Re: Remove old dragged when new dragged is placed into the same droppable

Hello, I want to know how would I go about making it so that when a new drag is placed into an already occupied drop it would displace the old drag outside of the drop.... Try it like - https://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=38835&p=417941&hilit=snap#p417941 Sorry but cou...
by omranpanda
Wed Aug 11, 2021 10:03 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Remove old dragged when new dragged is placed into the same droppable
Replies: 4
Views: 929

[Solved] Remove old dragged when new dragged is placed into the same droppable

Hello, I want to know how would I go about making it so that when a new drag is placed into an already occupied drop it would displace the old drag outside of the drop. I'm using a slightly modified code of the one found here https://www.renpy.org/doc/html/drag_drop.html Here is the code: init pytho...
by omranpanda
Mon Jun 07, 2021 3:11 am
Forum: Ren'Py Questions and Announcements
Topic: Which 3D model files does Renpy support?
Replies: 4
Views: 917

Re: Which 3D model files does Renpy support?

PyTom wrote: Sun Jun 06, 2021 5:58 pm None yet.

I'm leaning towards GLTF, but I'd be interesting in knowing what people are interested in.
Oh alright thank you for telling me!
by omranpanda
Sun Jun 06, 2021 12:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Which 3D model files does Renpy support?
Replies: 4
Views: 917

Which 3D model files does Renpy support?

Hello!

As what the title asks, what types of 3D model files does Renpy support now with the new 3D stage?
Also How would one insert and show the 3D object in Renpy?
by omranpanda
Tue Mar 30, 2021 3:35 pm
Forum: I am a Programmer, Director, or Other
Topic: [Closed][Free or Paid] Programmer who wants to join a project
Replies: 4
Views: 2181

[Closed][Free or Paid] Programmer who wants to join a project

Hello! I'm a student who has taken a liking to Renpy. I have worked on some personal Renpy projects and have also worked on some regular Python code. Things that I could do in Renpy: Work with image maps and image buttons Create custom Screens Make characters make beep boop sounds when they are spea...
by omranpanda
Sat Nov 14, 2020 10:30 am
Forum: Ren'Py Questions and Announcements
Topic: Animated dust particles in Ren'Py? (SOLVED)
Replies: 6
Views: 849

Re: Animated dust particles in Ren'Py?

Donmai wrote: Fri Nov 13, 2020 2:11 pm you can try this recipe from the Ren'Py cookbook section:
viewtopic.php?f=51&t=24762

This seems to work best for me, thanks!
by omranpanda
Thu Nov 12, 2020 4:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Animated dust particles in Ren'Py? (SOLVED)
Replies: 6
Views: 849

Re: Animated dust particles in Ren'Py?

Hi, omranpanda , 1) One option is to make a movie and use it as a background. Check this documentation link: https://www.renpy.org/doc/html/movie.html 2) For more or less simple animation you can use animation and transformation. Check the following links: https://www.renpy.org/doc/html/atl.html ht...
by omranpanda
Tue Nov 10, 2020 3:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Animated dust particles in Ren'Py? (SOLVED)
Replies: 6
Views: 849

Animated dust particles in Ren'Py? (SOLVED)

Does anyone know how to make animated dust particles in renpy? I already have the image that I will use for the particle but I don't know how to make them animated in renpy.

Something similar to this: https://youtu.be/0bkw5wDoyyw

Sorry if this seems like a stupid question.