com.fluid.simple-singleton
Advanced tools
An automaticaly generating singleton class that uses generics and inheritnace to automate its creation.
Weekly downloads
Readme
An automatically generating singleton class that uses generics and inheritance for creation.
Simply inherit the singleton class. Note that Singleton<T>
is a MonoBehavior.
using CleverCrow.Fluid.Utilities;
public class MySingleton : Singleton<MySingleton> {
public MyMethod () {}
}
You can now call it anywhere with MySingleton.Instance.MyMethod();
at runtime. It will always return the same instance until OnDestroy
is called.
Simple Singleton is used through Unity's Package Manager. In order to use it you'll need to add the following lines to your Packages/manifest.json
file. After that you'll be able to visually control what specific version of Simple Singleton you're using from the package manager window in Unity. This has to be done so your Unity editor can connect to NPM's package registry.
{
"scopedRegistries": [
{
"name": "NPM",
"url": "https://registry.npmjs.org",
"scopes": [
"com.fluid"
]
}
],
"dependencies": {
"com.fluid.simple-singleton": "1.0.0"
}
}
Archives of specific versions and release notes are available on the releases page.
To access nightly builds of the develop
branch that are package manager friendly, you'll need to manually edit your Packages/manifest.json
as so.
{
"dependencies": {
"com.fluid.simple-singleton": "https://github.com/ashblue/unity-simple-singleton.git#nightly"
}
}
Note that to get a newer nightly build you must delete this line and any related lock data in the manifest, let Unity rebuild, then add it back. As Unity locks the commit hash for Git urls as packages.
If you wish to run to run the development environment you'll need to install the latest node.js. Then run the following from the root once.
npm install
If you wish to create a build run npm run build
from the root and it will populate the dist
folder.
All commits should be made using Commitizen (which is automatically installed when running npm install
). Commits are automatically compiled to version numbers on release so this is very important. PRs that don't have Commitizen based commits will be rejected.
To make a commit type the following into a terminal from the root
npm run commit
This project was generated with Oyster Package Generator.
An automaticaly generating singleton class that uses generics and inheritnace to automate its creation.
The npm package com.fluid.simple-singleton receives a total of 203 weekly downloads. As such, com.fluid.simple-singleton popularity was classified as not popular.
We found that com.fluid.simple-singleton demonstrated a not healthy version release cadence and project activity. It has 1 open source maintainer collaborating on the project.