Outward
0 of 0

File information

Last updated

Original upload

Created by

Stian

Uploaded by

kongenav

Virus scan

Safe to use

Tags for this mod

Mod articles

  • Source code for v1

    using System;
    using UnityEngine;
    using Partiality.Modloader;
    using On;
    using UnityEngine.UI;

    public class MyPartialityMod : PartialityMod {

    public MyPartialityMod() {
    this.ModID = "SkipLogos";
    this.Version = "1";
    this.author = "Stian";
    }

    public override void OnEnable() {
    base.OnEnable();
    On.StartupVideo.Start += new On.StartupVideo.hook_Start(StartupVideo_Start);
    }

    public void StartupVideo_Start(On.StartupVideo.orig_Start orig, StartupVideo self) {
    StartupVideo.HasPlayedOnce = true;
    orig(self);
    }
    }
    ...