Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hi Hakuen, another question, if I have a custom menu like a Quest Log from another plugin, is there a way for me to also show the buttons in those scene?From my quest log plugin, i can call the quest menu via these codes... 

this.isEnabledQuestMenu();

SceneManager._scene.quest();

i tried to add the codes into Allowed Scenes but none of the code works? 

Hi there!

Yes you can. But you need to know the name of the scene. You can discover that in two ways:

When you enter in the scene in-game, press F8 or F12 to open the console log.

On the tab "console", type the following:

SceneManager._scene or SceneManager._scene.constructor.name 

This should return to you the name of the scene, so you can insert them on the plugin parameter.

Another way, is to open the plugin file with a text editor and discover the name of the scene from there.

(*ˊᗜˋ*)/ᵗᑋᵃᐢᵏ ᵞᵒᵘ*  It worked! Thanks!

Nice!!