- Steam App
- SRPG Studio (857320)
- Event type
- patch note
- Published
- 30 October 2024 - 05:22:49 UTC
- Source
- steam_community_announcements
Hello, everyone! We have now released version 1.303. New Feature: Added setActiveMusicTime to the script method to seek the current BGM to a specific time. // The following code shows an example of seeking to the 12 second position: // var minutes = 0; // var seconds = 12; // var time = (minutes * 60) + seconds; // root.getMediaManager().setActiveMusicTime(time); Added getActiveMusicTime to the script method to get the playback time of the current BGM. // var time = root.getMediaManager().getActiveMusicTime(); // var minutes = Math.floor(time / 60); // var seconds = Math.floor(time % 60); // root.resetConsole(); // root.log(minutes + ' : ' + seconds); Added custom-storysettings.js to the official plugin. Exclude unreviewed data from the list. Added other-gradedshopitem.js to the official plugin. Items that cannot be purchased due to lack of money are displayed in gray. Added battle-backg...