Search found 2 matches

by cytra
Thu Oct 05, 2023 6:59 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Screen not showing up
Replies: 2
Views: 257

Re: Screen not showing up

m_from_space wrote: Thu Oct 05, 2023 6:52 am Try:

Code: Select all

init python:

	def drag_activated(activated_item):

        	store.current = activated_item[0].drag_name
        	renpy.show_screen("item_description")
                renpy.restart_interaction()
Thank you so much! It works perfectly now! ^ ^
by cytra
Thu Oct 05, 2023 4:52 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Screen not showing up
Replies: 2
Views: 257

[Solved] Screen not showing up

I am trying to make an inventory screen where items can be dragged to a certain area to be combined so I'm using drag and drop. I want the description of a item to show up immediately after the item is being clicked or dragged. To achieve that, I made another screen for the description but it would ...