Skip to content

Commit 639d59d

Browse files
committed
init
0 parents  commit 639d59d

File tree

101 files changed

+31186
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+31186
-0
lines changed

Python4Unity/.gitignore

Lines changed: 258 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,258 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/python,unity,windows
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,unity,windows
4+
5+
### Python ###
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
share/python-wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
MANIFEST
33+
34+
# PyInstaller
35+
# Usually these files are written by a python script from a template
36+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
37+
*.manifest
38+
*.spec
39+
40+
# Installer logs
41+
pip-log.txt
42+
pip-delete-this-directory.txt
43+
44+
# Unit test / coverage reports
45+
htmlcov/
46+
.tox/
47+
.nox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*.cover
54+
*.py,cover
55+
.hypothesis/
56+
.pytest_cache/
57+
cover/
58+
59+
# Translations
60+
*.mo
61+
*.pot
62+
63+
# Django stuff:
64+
*.log
65+
local_settings.py
66+
db.sqlite3
67+
db.sqlite3-journal
68+
69+
# Flask stuff:
70+
instance/
71+
.webassets-cache
72+
73+
# Scrapy stuff:
74+
.scrapy
75+
76+
# Sphinx documentation
77+
docs/_build/
78+
79+
# PyBuilder
80+
.pybuilder/
81+
target/
82+
83+
# Jupyter Notebook
84+
.ipynb_checkpoints
85+
86+
# IPython
87+
profile_default/
88+
ipython_config.py
89+
90+
# pyenv
91+
# For a library or package, you might want to ignore these files since the code is
92+
# intended to run in multiple environments; otherwise, check them in:
93+
# .python-version
94+
95+
# pipenv
96+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
97+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
98+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
99+
# install all needed dependencies.
100+
#Pipfile.lock
101+
102+
# poetry
103+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
104+
# This is especially recommended for binary packages to ensure reproducibility, and is more
105+
# commonly ignored for libraries.
106+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
107+
#poetry.lock
108+
109+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
110+
__pypackages__/
111+
112+
# Celery stuff
113+
celerybeat-schedule
114+
celerybeat.pid
115+
116+
# SageMath parsed files
117+
*.sage.py
118+
119+
# Environments
120+
.env
121+
.venv
122+
env/
123+
venv/
124+
ENV/
125+
env.bak/
126+
venv.bak/
127+
128+
# Spyder project settings
129+
.spyderproject
130+
.spyproject
131+
132+
# Rope project settings
133+
.ropeproject
134+
135+
# mkdocs documentation
136+
/site
137+
138+
# mypy
139+
.mypy_cache/
140+
.dmypy.json
141+
dmypy.json
142+
143+
# Pyre type checker
144+
.pyre/
145+
146+
# pytype static type analyzer
147+
.pytype/
148+
149+
# Cython debug symbols
150+
cython_debug/
151+
152+
# PyCharm
153+
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
154+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
155+
# and can be added to the global gitignore or merged into this file. For a more nuclear
156+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
157+
#.idea/
158+
159+
### Unity ###
160+
# This .gitignore file should be placed at the root of your Unity project directory
161+
#
162+
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
163+
/[Ll]ibrary/
164+
/[Tt]emp/
165+
/[Oo]bj/
166+
/[Bb]uild/
167+
/[Bb]uilds/
168+
/[Ll]ogs/
169+
/[Uu]ser[Ss]ettings/
170+
171+
# MemoryCaptures can get excessive in size.
172+
# They also could contain extremely sensitive data
173+
/[Mm]emoryCaptures/
174+
175+
# Recordings can get excessive in size
176+
/[Rr]ecordings/
177+
178+
# Uncomment this line if you wish to ignore the asset store tools plugin
179+
# /[Aa]ssets/AssetStoreTools*
180+
181+
# Autogenerated Jetbrains Rider plugin
182+
/[Aa]ssets/Plugins/Editor/JetBrains*
183+
184+
# Visual Studio cache directory
185+
.vs/
186+
187+
# Gradle cache directory
188+
.gradle/
189+
190+
# Autogenerated VS/MD/Consulo solution and project files
191+
ExportedObj/
192+
.consulo/
193+
*.csproj
194+
*.unityproj
195+
*.sln
196+
*.suo
197+
*.tmp
198+
*.user
199+
*.userprefs
200+
*.pidb
201+
*.booproj
202+
*.svd
203+
*.pdb
204+
*.mdb
205+
*.opendb
206+
*.VC.db
207+
208+
# Unity3D generated meta files
209+
*.pidb.meta
210+
*.pdb.meta
211+
*.mdb.meta
212+
213+
# Unity3D generated file on crash reports
214+
sysinfo.txt
215+
216+
# Builds
217+
*.apk
218+
*.aab
219+
*.unitypackage
220+
*.app
221+
222+
# Crashlytics generated file
223+
crashlytics-build.properties
224+
225+
# Packed Addressables
226+
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
227+
228+
# Temporary auto-generated Android Assets
229+
/[Aa]ssets/[Ss]treamingAssets/aa.meta
230+
/[Aa]ssets/[Ss]treamingAssets/aa/*
231+
232+
### Windows ###
233+
# Windows thumbnail cache files
234+
Thumbs.db
235+
Thumbs.db:encryptable
236+
ehthumbs.db
237+
ehthumbs_vista.db
238+
239+
# Dump file
240+
*.stackdump
241+
242+
# Folder config file
243+
[Dd]esktop.ini
244+
245+
# Recycle Bin used on file shares
246+
$RECYCLE.BIN/
247+
248+
# Windows Installer files
249+
*.cab
250+
*.msi
251+
*.msix
252+
*.msm
253+
*.msp
254+
255+
# Windows shortcuts
256+
*.lnk
257+
258+
# End of https://www.toptal.com/developers/gitignore/api/python,unity,windows

Python4Unity/.vscode/settings.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"files.exclude":
3+
{
4+
"**/.DS_Store":true,
5+
"**/.git":true,
6+
"**/.gitignore":true,
7+
"**/.gitmodules":true,
8+
"**/*.booproj":true,
9+
"**/*.pidb":true,
10+
"**/*.suo":true,
11+
"**/*.user":true,
12+
"**/*.userprefs":true,
13+
"**/*.unityproj":true,
14+
"**/*.dll":true,
15+
"**/*.exe":true,
16+
"**/*.pdf":true,
17+
"**/*.mid":true,
18+
"**/*.midi":true,
19+
"**/*.wav":true,
20+
"**/*.gif":true,
21+
"**/*.ico":true,
22+
"**/*.jpg":true,
23+
"**/*.jpeg":true,
24+
"**/*.png":true,
25+
"**/*.psd":true,
26+
"**/*.tga":true,
27+
"**/*.tif":true,
28+
"**/*.tiff":true,
29+
"**/*.3ds":true,
30+
"**/*.3DS":true,
31+
"**/*.fbx":true,
32+
"**/*.FBX":true,
33+
"**/*.lxo":true,
34+
"**/*.LXO":true,
35+
"**/*.ma":true,
36+
"**/*.MA":true,
37+
"**/*.obj":true,
38+
"**/*.OBJ":true,
39+
"**/*.asset":true,
40+
"**/*.cubemap":true,
41+
"**/*.flare":true,
42+
"**/*.mat":true,
43+
"**/*.meta":true,
44+
"**/*.prefab":true,
45+
"**/*.unity":true,
46+
"build/":true,
47+
"Build/":true,
48+
"Library/":true,
49+
"library/":true,
50+
"obj/":true,
51+
"Obj/":true,
52+
"ProjectSettings/":true,
53+
"temp/":true,
54+
"Temp/":true
55+
}
56+
}

Python4Unity/Assets/Plugins.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
392 KB
Binary file not shown.

Python4Unity/Assets/Plugins/Python.Runtime.dll.meta

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python4Unity/Assets/Python4Unity.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)