It may be a case of the save-file being too large. On WebGL, AC saves data to PlayerPrefs, which has a 1MB file-size cap.
How large are your save-game files typically when saving on PC?
Can you access the Options menu? Try changing the volume, then closing and re-opening - are the changes retains?
We'll need to see what kind of error message gets output when the screen goes black - on WebGL, this ought to show in your browser's J…
Yes indeed - after using the Speech Manager's "Gather text" operation to scan your game for speech lines, you can then assign audio clips to play when each line is spoken.
A tutorial on this can be found here.
It's possible to access the Ambience audiosource through scripting to set the spatial blend with:
AC.KickStarter.stateHandler.GetAmbienceEngine().audioSource.spatialBlend
The issue is that (presumably) it'll need to be coming from a different rela…
If this is for speech in general, you can set this behaviour at the top of the Speech Manager. Check Display subtitles forever until user skips it?, and then Can skip with mouse clicks? to have this work with default mouse input.
The majority of Manager fields can be set at runtime through script - see this tutorial.
However, you could also approach this situation with a Timeline that runs AC Speech tracks.
(Quote)
It's linked to the Default PlayerStart object - assign that, and it should show underneath.
(Quote)
If it's installed, you'll have a custom EventSystem prefab in your Menu Manager that uses the integration's Controls Reader component.
Yes, I'd recommend a different approach as this way will most likely have unwanted effects elsewhere.
If you have a custom raycast that can get the hovered-over Hotspot, you can bypass PlayerInteraction and just show the Hotspot's name in a Menu ma…
Open up AC's PlayerInput script and find the IsCursorReadable function around line 984.
At the top of it, copy/paste:
return true;
Does that resolve it?
That feature is available with the latest release in the Character: Move to point Action.
If you can't upgrade, you can try importing the latest release into a fresh project and copying over the ActionCharPathfind Action.
Glad to hear Adventure Creator is as addictive as Animal Crossing ;)
If you're mixing both AC and Cinemachine cameras, the best way to handle this is to leave AC's MainCamera alone, and instead add a separate Cinemachine Brain object that also has …
Welcome back, @EBlomquist!
What version are you using, and what is your Cursor rendering field set to? This will affect the way in which cursors are scaled.
If using Software, then its set by the Inventory cursor size field. If Hardware, then it…
The raw list of Documents defined within the Inventory Manager:
KickStarter.inventoryManager.documents
The Scripting Guide's entry on this can be found here.