{"id":47842604,"url":"https://github.com/abbgrade/propertyinspector","last_synced_at":"2026-04-03T21:01:31.326Z","repository":{"id":23544144,"uuid":"26911164","full_name":"abbgrade/PropertyInspector","owner":"abbgrade","description":"PropertyInspector for Unity displays the values of properties in a default inspector.","archived":false,"fork":false,"pushed_at":"2014-11-25T08:22:10.000Z","size":140,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-02T00:46:26.312Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/abbgrade.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"License.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-11-20T12:22:49.000Z","updated_at":"2024-05-02T00:46:26.313Z","dependencies_parsed_at":"2022-09-10T04:15:01.335Z","dependency_job_id":null,"html_url":"https://github.com/abbgrade/PropertyInspector","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abbgrade/PropertyInspector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2FPropertyInspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2FPropertyInspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2FPropertyInspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2FPropertyInspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abbgrade","download_url":"https://codeload.github.com/abbgrade/PropertyInspector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2FPropertyInspector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31377117,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-04-03T21:01:30.768Z","updated_at":"2026-04-03T21:01:31.304Z","avatar_url":"https://github.com/abbgrade.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Property Inspector\n\n*PropertyInspector* is a improved *DefaultInspector* for the [*Unity3d* game engine](http://unity3d.com). It's tested with *Unity 4* and may work with older versions.\n\nFor debug purposes you may want to view the values of properties and unserialized fields of your *MonoBehaviors*. With the *PropertyInspector* this is very easy.\n\n## License\n\nThis is free software and it is provided under MIT license that is distributed with this package.\n\n## Contribution \u0026 Support\n\nIf you have a question or contribution to the *PropertyInspector* visit our [GitHub Project](https://github.com/abbgrade/PropertyInspector).\n\nTo build the readme on *Windows* and *VisualStudio* you have to install [Pandoc](johnmacfarlane.net/pandoc) and [MiKTeX](http://miktex.org/).\n\n## Installation\n\n### From Unitypackage\n\nSelect in the Menu \"Assets/Import Package/Custom Package\"\nSelect your local copy of \"PropertyInspector.unitypackage\"\n\n### From GitHub\n\nDownload the [sources](https://github.com/abbgrade/PropertyInspector/archive/master.zip) from *Github*.\nUnpack *Editor.cs* *ShowInInspector.cs* to your projects *Assets* directory.\n\n## Usage\n\n### Show Properties in the Inspector\n\nJust add the attribute *ShowInInspector* to the property which should be displayed.\nNote that the getter must be public.\n\n#### Example\n\n\t[ShowInInspector]\n\tpublic Vector3 GlobalPosition\n\t{\n\t\tGet { return this.transform.position; }\n\t}\n\n### Custom Inspectors\n\nInstead of inherit from *UnityEditor.Editor* inherit from *PropertyInspector.Editor*.\nDon't forget to call *base.OnInspectorGUI* if you override *OnInspectorGUI*.\n\n#### Example\n\n\tusing UnityEditor;\n\tusing UnityEngine;\n\n\t[CustomEditor(typeof(CustomBehavior))]\n\tpublic class CustomInspector : PropertyInspector.Editor\n\t{\n\t    public override void OnInspectorGUI()\n\t    {\n\t        base.OnInspectorGUI();\n\n\t        if (GUILayout.Button(\"Do Fun\"))\n\t        {\n\t            Debug.Log(\"Fun\");\n\t        }\n\t    }\n\t}","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabbgrade%2Fpropertyinspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabbgrade%2Fpropertyinspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabbgrade%2Fpropertyinspector/lists"}