Unclaimed Package Is this your package? Claim it to unlock full analytics and manage your listing.
Claim This Package

Install via UPM

Add to Unity Package Manager using this URL

https://www.pkglnk.dev/track/serially.git

README

Serially




Extends the Unity Editor with type picking functionalities.

Usage

ShowSerializeReferenceAttribute

ShowSerializeReferenceAttribute

Use the ShowSerializeReferenceAttribute on a serializable field with SerializeReference to add a type picker inspector to that field.

using UnityEngine;
using CareBoo.Serially;

public class MyBehavior : MonoBehaviour
{
  [SerializeReference, ShowSerializeReference]
  public IPet myPet;
}

SerializableType

SerializableType

Serialize any type with SerializableType class.

using UnityEngine;
using CareBoo.Serially;

public class MyBehaviour : MonoBehaviour
{
  public SerializableType myType;
  
  private void Start()
  {
    Debug.Log("Serialized type is " + myType.Type.FullName);
  }
}

Installation

Scoped Registries

Registry URL
NPM https://registry.npmjs.org/
OpenUPM https://package.openupm.com

This project can be installed as a UPM package on OpenUPM or npmjs by adding those as scoped registries. See the Unity manual for more information on Scoped Registries.

Local Packages

Alternatively, you can install this directly as either a tarball or unity asset package from the latest release.

Documentation

Documentation is hosted here on GitHub pages.

Total Installs
0
Last 30 days
Unique IPs
0
Approximate users

Installs Over Time

Operating Systems

No data yet

Top Countries

No data yet

Git Versions

No data yet

Embed Install Badge

Add an install count badge to your README

Style
Preview
pkglnk installs badge
Markdown
[![pkglnk installs](https://www.pkglnk.dev/badge/serially.svg?style=pkglnk)](https://www.pkglnk.dev/pkg/serially)
HTML
<a href="https://www.pkglnk.dev/pkg/serially"><img src="https://www.pkglnk.dev/badge/serially.svg?style=pkglnk" alt="pkglnk installs"></a>

Comments

No comments yet. Be the first!