{"id":14960827,"url":"https://github.com/careboo/serially","last_synced_at":"2025-10-24T19:30:34.586Z","repository":{"id":37644398,"uuid":"273150525","full_name":"CareBoo/Serially","owner":"CareBoo","description":"Adds a unity-supported, SerializableType class and an inspector for editing SerializeReference fields.","archived":false,"fork":false,"pushed_at":"2024-01-02T16:43:04.000Z","size":3046,"stargazers_count":40,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-10T10:23:16.599Z","etag":null,"topics":["openupm","serializer","unity","unity-asset","unity-editor","unity-package","unity-package-manager","unity-scripts","upm"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CareBoo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-18T05:35:21.000Z","updated_at":"2024-09-30T00:04:26.000Z","dependencies_parsed_at":"2024-09-24T13:49:46.376Z","dependency_job_id":null,"html_url":"https://github.com/CareBoo/Serially","commit_stats":{"total_commits":210,"total_committers":2,"mean_commits":105.0,"dds":0.09999999999999998,"last_synced_commit":"58c5207f4ae3f61539bd1ed0bbb74eb6e0a82448"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CareBoo%2FSerially","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CareBoo%2FSerially/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CareBoo%2FSerially/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CareBoo%2FSerially/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CareBoo","download_url":"https://codeload.github.com/CareBoo/Serially/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219868059,"owners_count":16555878,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["openupm","serializer","unity","unity-asset","unity-editor","unity-package","unity-package-manager","unity-scripts","upm"],"created_at":"2024-09-24T13:23:06.852Z","updated_at":"2025-10-24T19:30:29.147Z","avatar_url":"https://github.com/CareBoo.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 id=\"Serially\"\u003e\r\nSerially\r\n\r\n\u003c/h1\u003e\r\n\u003cp\u003e\r\n  \u003ca href=\"LICENSE.md\"\u003e\r\n    \u003cimg src=\"https://img.shields.io/github/license/CareBoo/Serially\"/\u003e\r\n  \u003c/a\u003e\r\n  \u003c/br\u003e\r\n  \u003ca href=\"https://github.com/CareBoo/Serially/actions/workflows/test.yaml\"\u003e\r\n    \u003cimg src=\"https://img.shields.io/github/checks-status/CareBoo/Serially/main\"/\u003e\r\n  \u003c/a\u003e\r\n  \u003c/br\u003e\r\n  \u003ca href=\"https://www.npmjs.com/package/com.careboo.serially\"\u003e\r\n    \u003cimg src=\"https://img.shields.io/npm/v/com.careboo.serially\"/\u003e\r\n  \u003c/a\u003e\r\n  \u003c/br\u003e\r\n  \u003ca href=\"https://openupm.com/packages/com.careboo.serially/\"\u003e\r\n    \u003cimg src=\"https://img.shields.io/npm/v/com.careboo.serially?label=openupm\u0026registry_uri=https://package.openupm.com\"/\u003e\r\n  \u003c/a\u003e\r\n\u003c/p\u003e\r\n\r\n\u003c/h1\u003e\r\n\r\nExtends the Unity Editor with type picking functionalities.\r\n\r\n- [Usage](#usage)\r\n  - [`ShowSerializeReferenceAttribute`](#showserializereferenceattribute)\r\n  - [`SerializableType`](#serializabletype)\r\n- [Installation](#installation)\r\n  - [Scoped Registries](#scoped-registries)\r\n  - [Local Packages](#local-packages)\r\n- [Documentation](#documentation)\r\n\r\n## Usage\r\n\r\n### `ShowSerializeReferenceAttribute`\r\n\r\n![ShowSerializeReferenceAttribute](Documentation~/images/ShowSerializeReferenceDrawer.png)\r\n\r\nUse the `ShowSerializeReferenceAttribute` on a serializable field with `SerializeReference` to add a type picker inspector to that field.\r\n\r\n```cs\r\nusing UnityEngine;\r\nusing CareBoo.Serially;\r\n\r\npublic class MyBehavior : MonoBehaviour\r\n{\r\n  [SerializeReference, ShowSerializeReference]\r\n  public IPet myPet;\r\n}\r\n```\r\n\r\n### `SerializableType`\r\n\r\n![SerializableType](Documentation~/images/SerializableTypeDrawer.png)\r\n\r\nSerialize any type with `SerializableType` class.\r\n\r\n```cs\r\nusing UnityEngine;\r\nusing CareBoo.Serially;\r\n\r\npublic class MyBehaviour : MonoBehaviour\r\n{\r\n  public SerializableType myType;\r\n  \r\n  private void Start()\r\n  {\r\n    Debug.Log(\"Serialized type is \" + myType.Type.FullName);\r\n  }\r\n}\r\n```\r\n\r\n## Installation\r\n\r\n### Scoped Registries\r\n\r\n| Registry | URL                         |\r\n|----------|:----------------------------|\r\n| NPM      | https://registry.npmjs.org/ |\r\n| OpenUPM  | https://package.openupm.com |\r\n\r\nThis project can be installed as a UPM package on [OpenUPM](https://openupm.com/packages/com.careboo.serially/)\r\nor [npmjs](https://www.npmjs.com/package/com.careboo.serially) by adding those as scoped registries. [See the Unity manual](https://docs.unity3d.com/Manual/upm-scoped.html) for more information on Scoped Registries.\r\n\r\n### Local Packages\r\n\r\nAlternatively, you can install this directly as either a tarball or unity asset package from\r\nthe [latest release](https://github.com/CareBoo/Serially/releases/latest).\r\n\r\n## Documentation\r\n\r\nDocumentation is hosted [here on GitHub pages](https://careboo.github.io/Serially/2.2).\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcareboo%2Fserially","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcareboo%2Fserially","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcareboo%2Fserially/lists"}