openplanet-nl / issues

Issue tracker for Openplanet.
10 stars 0 forks source link

Log messages in destructors can show as being made by the wrong plugin #475

Closed XertroV closed 2 months ago

XertroV commented 2 months ago

image

[   ScriptRuntime] [12:52:06] [dips-plus-plus]  Removing title anim: FloorTitleGeneric: Deep Dip 2, stage: 7, stageT: 0, currTime: 4.20624 / 4.20571
[   ScriptRuntime] [12:52:06] [Camera]  destroying MainTitleScreenAnim: Deep Dip 2 / A Beautiful Dip

the line in question


    ~MainTitleScreenAnim() {
        trace('destroying MainTitleScreenAnim: ' + titleName + " / " + secLine);
        if (audio !is null) {
            audio.StartFadeOutLoop();
        }
    }