Forum rules - please read before posting.

Disabling the click marker for one scene

Hey there!

I was wondering if it's possible to disable the click marker (in point and click method) just for one scene? For example: 

Scene 1 - with click marker
Scene 2 - without click marker
Scene 3 - with click marker

Thanks!

Comments

  • You would have to modify the field in the Settings Manager through script.  This is generally true for any such field you want to change mid-game: right-click the field's label and you'll be able to copy an API reference to it to the text buffer.  The click marker field is called clickPrefab, and can be changed via:

    AC.KickStarter.settingsManager.clickPrefab = myNewPrefab; // Change to myNewPrefab

    AC.KickStarter.settingsManager.clickPrefab = null; // Change to null (remove)

    You can place these lines in your own scripts (I recommend the Start functions of C# scripts) to have them run when each scene begins.
  • Thank you!
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Welcome to the official forum for Adventure Creator.