You are viewing a potentially older version of this package. View all versions.
Terrain-CommonFly-1.0.1 icon

CommonFly

A common implementation of a fly mode.

Date uploaded 2 years ago
Version 1.0.1
Download link Terrain-CommonFly-1.0.1.zip
Downloads 32741
Dependency string Terrain-CommonFly-1.0.1

This mod requires the following mods to function

Terrain-SettingsApi-1.1.1 icon
Terrain-SettingsApi

Settings API for allowing mods to add settings.

Preferred version: 1.1.1

README

Common Fly

This is a helper mod that implements a fly mode that other plugins can hook into and enable/disable. This mod handles the movement and inputs, but not enabling/disabling the fly mode. By itself, this plugin does NOTHING. (other than add 2 settings that are ignored)

Usage

First, add a [BepInDependency("Terrain.CommonFly")] annotation to your plugin.

  • To enable/disable flying, simply set the CommonFly.flying property to true/false.
  • There's also a CommonFly.noclip property, which prevents the fly mode from suddenly ending when you hit solid objects. Specifically, it completely disables your player collider client-side.

Both of these are auto properties instead of fields for your patching convenience, because then you can use something like [HarmonyPatch(typeof(CommonFly), nameof(CommonFly.flying), MethodType.Getter)] if you need to change the value when it's used (which is like 3-4 times every physics frame or something actually).

The other two properties CommonFly.flyUp and CommonFly.flyDown are the actual inputs sent by the player. You probably shouldn't mess with their setters, but you can Reverse Patch them if you really want to anyways.


Icon made by Shocho. I haven't modified the icon outside of the preview options The Noun Project provides.