Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 1012 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 1012 Bytes

Raft-ModKit

Raft Poster

How to start playing with mods

How to Build

How to start modding

  • Create new C# .Net Framework Library project named SomethingHere_Script. Important: Your assembly filename must ends with Script.dll
  • Add references to
    • UnityEngine
    • Assembly-CSharp.dll
  • Extend you Script class with UnityEngine.MonoBehaviour
  • Now you subscribed to Unity scene messages. Look here

References