Skip to content

Commit

Permalink
asmdefs and better structure
Browse files Browse the repository at this point in the history
  • Loading branch information
larsolm committed Oct 7, 2019
1 parent f2e413f commit 5f92c4d
Show file tree
Hide file tree
Showing 10 changed files with 64 additions and 14 deletions.
17 changes: 15 additions & 2 deletions Assets/PiRhoUtilities/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# PiRhoUtilities
A suite of UIElement based attributes, drawers, controls, and other helpers to expedite the creation of object inspectors without the need of additional custom editors
# PiRhoUtilities Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
### Removed
### Changed

## [1.0.0] - 2019-10-07
### Added
- First official release
18 changes: 18 additions & 0 deletions Assets/PiRhoUtilities/Editor/Unity.PiRhoUtilities.Editor.asmdef
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "Unity.PiRhoUtilities.Editor",
"references": [
"GUID:3715f24fc38286044b48d4ff45a54a39",
"GUID:9e24947de15b9834991c9d8411ea37cf"
],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Assets/PiRhoUtilities/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# PiRhoUtilities
A suite of UIElement based attributes, drawers, controls, and other helpers to expedite the creation of object inspectors without the need of additional custom editors
A suite of UIElements based attributes, drawers, controls, and other helpers to expedite the creation of inspectors without the need of additional custom editors
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"name": "Unity.PiRhoUtilities.Runtime"
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Assets/PiRhoUtilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"keywords": [ "editor utilities" ],
"category": "Editory Utilities",
"dependencies": {
"com.unity.addressables": "1.2.4"
},
"samples": [
{
Expand Down
9 changes: 1 addition & 8 deletions Packages/manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
{
"dependencies": {
"com.unity.collab-proxy": "1.2.16",
"com.unity.ext.nunit": "1.0.0",
"com.unity.ide.rider": "1.1.0",
"com.unity.ide.vscode": "1.0.7",
"com.unity.test-framework": "1.1.1",
"com.unity.textmeshpro": "2.0.1",
"com.unity.timeline": "1.2.1",
"com.unity.ugui": "1.0.0",
"com.unity.addressables": "1.2.4",
"com.unity.modules.ai": "1.0.0",
"com.unity.modules.androidjni": "1.0.0",
"com.unity.modules.animation": "1.0.0",
Expand Down
6 changes: 3 additions & 3 deletions ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
PlayerSettings:
m_ObjectHideFlags: 0
serializedVersion: 20
productGUID: 00000000000000000000000000000000
productGUID: d46af0e750ce66d47ab49fbdbd31a90e
AndroidProfiler: 0
AndroidFilterTouchesWhenObscured: 0
AndroidEnableSustainedPerformanceMode: 0
defaultScreenOrientation: 4
targetDevice: 2
useOnDemandResources: 0
accelerometerFrequency: 60
companyName:
productName:
companyName: DefaultCompany
productName: PiRhoUtilities
defaultCursor: {fileID: 0}
cursorHotspot: {x: 0, y: 0}
m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# PiRhoUtilities
A suite of UIElements based attributes, drawers, controls, and other helpers to expedite the creation of inspectors without the need of additional custom editors

## How To Use

In your Unity project open the Package Manager ('Window -> Package Manager').
Click on the 'Add' (+) button in the top left and choose "Add package from git URL..."
Enter the URL, https://github.com/pirhosoft/PiRhoUtilities.git#upm in the popup box and click 'Add'

0 comments on commit 5f92c4d

Please sign in to comment.