Class DynamicMod
- Namespace
- MonkeyLoader.Meta
- Assembly
- MonkeyLoader.dll
Contains all the metadata and references to patchers, which can be constructed dynamically at runtime using DynamicMod.Builder.
public class DynamicMod : Mod, IConfigOwner, IIdentifiableOwner<IConfigOwner, Config>, IIdentifiableOwner<Config>, IShutdown, ILoadedNuGetPackage, IComparable<Mod>, INestedIdentifiableOwner<ConfigSection>, INestedIdentifiableOwner<IDefiningConfigKey>, IIdentifiableOwner<Mod, IMonkey>, IIdentifiableOwner<IMonkey>, IIdentifiableOwner<Mod, IEarlyMonkey>, IIdentifiableOwner<IEarlyMonkey>, IIdentifiable, IAuthorable
- Inheritance
-
DynamicMod
- Implements
- Inherited Members
- Extension Methods
Properties
Description
Gets the description of this mod.
public override string Description { get; }
Property Value
FileSystem
Gets the readonly file system of this mod's file.
public override IFileSystem FileSystem { get; }
Property Value
- IFileSystem
IconPath
Gets the path to the mod's icon inside the mod's FileSystem.
null
if it wasn't given or doesn't exist.
public override UPath? IconPath { get; }
Property Value
- UPath?
IconUrl
Gets the Url to the mod's icon on the web.
null
if it wasn't given or was invalid.
public override Uri? IconUrl { get; }
Property Value
Identity
Gets the identity of this mod.
public override PackageIdentity Identity { get; }
Property Value
- PackageIdentity
ProjectUrl
Gets the Url to this mod's project website.
null
if it wasn't given or was invalid.
public override Uri? ProjectUrl { get; }
Property Value
ReleaseNotes
Gets the release notes for this mod's version.
public override string? ReleaseNotes { get; }
Property Value
SupportsHotReload
Gets whether this type of mod supports hot reloading.
public override bool SupportsHotReload { get; }
Property Value
TargetFramework
Gets the framework targeted by this mod.
public override NuGetFramework TargetFramework { get; }
Property Value
- NuGetFramework
Title
Gets the nice identifier of this mod.
public override string Title { get; }
Property Value
Methods
OnLoadEarlyMonkeys()
Loads the mod's early monkeys.
protected override bool OnLoadEarlyMonkeys()
Returns
- bool
true
if it ran successfully; otherwise,false
.
OnLoadMonkeys()
Loads the mod's monkeys.
protected override bool OnLoadMonkeys()
Returns
- bool
true
if it ran successfully; otherwise,false
.