Skip to content
This repository was archived by the owner on Aug 10, 2021. It is now read-only.

Commit 757251e

Browse files
committed
Add package files necessary for use with Unity package manager
1 parent 26d78e1 commit 757251e

12 files changed

+135
-2
lines changed

Diff for: .editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
trim_trailing_whitespace = true
5+
insert_final_newline = true
6+
max_line_length = 100
7+
indent_style = space
8+
end_of_line = lf
9+
indent_size = 4
10+
charset = utf-8
11+
12+
[*.{json,asmdef}]
13+
indent_size = 2

Diff for: .gitignore

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
[Ll]ibrary/
2+
[Tt]emp/
3+
[Oo]bj/
4+
[Bb]uild/
5+
[Bb]uilds/
6+
[Ll]ogs/
7+
8+
# Never ignore Asset meta data.
9+
![Aa]ssets/**/*.meta
10+
11+
# Visual Studio cache directory.
12+
.vs/
13+
14+
# Gradle cache directory.
15+
.gradle/
16+
17+
# Autogenerated VS/MD/Consulo solution and project files.
18+
ExportedObj/
19+
.consulo/
20+
*.csproj
21+
*.unityproj
22+
*.sln
23+
*.suo
24+
*.tmp
25+
*.user
26+
*.userprefs
27+
*.pidb
28+
*.booproj
29+
*.svd
30+
*.pdb
31+
*.mdb
32+
*.opendb
33+
*.VC.db
34+
35+
# Unity3D generated meta files.
36+
*.pidb.meta
37+
*.pdb.meta
38+
*.mdb.meta
39+
40+
# Unity3D generated file on crash reports.
41+
sysinfo.txt
42+
43+
# Builds.
44+
*.apk
45+
*.unitypackage
46+
47+
# Crashlytics generated file.
48+
crashlytics-build.properties
49+
50+
# Rider.
51+
.idea/

Diff for: Assets/Editor.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "Chark.UnityScriptableObjects.Editor",
3+
"references": [
4+
"Chark.UnityScriptableObjects"
5+
],
6+
"includePlatforms": [
7+
"Editor"
8+
]
9+
}

Diff for: Assets/Editor/Chark.UnityScriptableObjects.Editor.asmdef.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Assets/Runtime.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Assets/Runtime/Chark.UnityScriptableObjects.asmdef

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "Chark.UnityScriptableObjects"
3+
}

Diff for: Assets/Runtime/Chark.UnityScriptableObjects.asmdef.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Assets/package.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "com.chark.unity-scriptable-objects",
3+
"displayName": "Unity Scriptable Objects",
4+
"version": "0.1.0",
5+
"unity": "2019.4",
6+
"description": "Provides Game Events and their respective listeners. Includes Mutable Scriptable Objects for injecting and using shared data."
7+
}

Diff for: Assets/package.json.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
deploy:
2+
git subtree push --prefix Assets origin upm

Diff for: README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1-
# unity-scriptable-objects
2-
Game events and sharded data realized using ScriptableObject
1+
# Unity Scriptable Objects
2+
Provides Game Events and their respective listeners. Includes Mutable Scriptable Objects for injecting and using shared data.
3+
4+
## Installation
5+
<https://docs.unity3d.com/Packages/[email protected]/manual/index.html>
6+
7+
```json
8+
{
9+
"dependencies": {
10+
"com.chark.unity-scriptable-objects": "https://github.com/chark/unity-scriptable-objects.git#upm"
11+
}
12+
}
13+
```

0 commit comments

Comments
 (0)