Skip to content

Commit 179829a

Browse files
committed
initial commit
0 parents  commit 179829a

28 files changed

+2205
-0
lines changed

.gitignore

Lines changed: 284 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,284 @@
1+
dist
2+
Assets/AssetStoreTools
3+
Assets/AssetStoreTools.meta
4+
Assembly-CSharp-Editor.csproj
5+
Assembly-CSharp.csproj
6+
bin
7+
Temp
8+
Library
9+
.DS_Store
10+
*~
11+
*.swp
12+
*.bat
13+
*.bak
14+
temp
15+
.mayaSwatches
16+
.git
17+
.svn
18+
.hg
19+
*.pyc
20+
*.orig
21+
.project
22+
*.vpj
23+
*.vpw
24+
*.vpwhistu
25+
*.vtg
26+
*.unityproj
27+
*.user
28+
*.userprefs
29+
*.unitypackage
30+
31+
## Ignore Visual Studio temporary files, build results, and
32+
## files generated by popular Visual Studio add-ons.
33+
34+
# User-specific files
35+
*.suo
36+
*.user
37+
*.userosscache
38+
*.sln.docstates
39+
40+
# User-specific files (MonoDevelop/Xamarin Studio)
41+
*.userprefs
42+
43+
# Build results
44+
[Dd]ebug/
45+
[Dd]ebugPublic/
46+
[Rr]elease/
47+
[Rr]eleases/
48+
x64/
49+
x86/
50+
bld/
51+
[Bb]in/
52+
[Oo]bj/
53+
[Ll]og/
54+
55+
# Visual Studio 2015 cache/options directory
56+
.vs/
57+
# Uncomment if you have tasks that create the project's static files in wwwroot
58+
#wwwroot/
59+
60+
# MSTest test Results
61+
[Tt]est[Rr]esult*/
62+
[Bb]uild[Ll]og.*
63+
64+
# NUNIT
65+
*.VisualState.xml
66+
TestResult.xml
67+
68+
# Build Results of an ATL Project
69+
[Dd]ebugPS/
70+
[Rr]eleasePS/
71+
dlldata.c
72+
73+
# DNX
74+
project.lock.json
75+
artifacts/
76+
77+
*_i.c
78+
*_p.c
79+
*_i.h
80+
*.ilk
81+
# *.meta UNITY NEEDS THIS
82+
*.obj
83+
*.pch
84+
*.pdb
85+
*.pgc
86+
*.pgd
87+
*.rsp
88+
*.sbr
89+
*.tlb
90+
*.tli
91+
*.tlh
92+
*.tmp
93+
*.tmp_proj
94+
*.log
95+
*.vspscc
96+
*.vssscc
97+
.builds
98+
*.pidb
99+
*.svclog
100+
*.scc
101+
102+
# Chutzpah Test files
103+
_Chutzpah*
104+
105+
# Visual C++ cache files
106+
ipch/
107+
*.aps
108+
*.ncb
109+
*.opendb
110+
*.opensdf
111+
*.sdf
112+
*.cachefile
113+
*.VC.db
114+
*.VC.VC.opendb
115+
116+
# Visual Studio profiler
117+
*.psess
118+
*.vsp
119+
*.vspx
120+
*.sap
121+
122+
# TFS 2012 Local Workspace
123+
$tf/
124+
125+
# Guidance Automation Toolkit
126+
*.gpState
127+
128+
# ReSharper is a .NET coding add-in
129+
_ReSharper*/
130+
*.[Rr]e[Ss]harper
131+
*.DotSettings.user
132+
133+
# JustCode is a .NET coding add-in
134+
.JustCode
135+
136+
# TeamCity is a build add-in
137+
_TeamCity*
138+
139+
# DotCover is a Code Coverage Tool
140+
*.dotCover
141+
142+
# NCrunch
143+
_NCrunch_*
144+
.*crunch*.local.xml
145+
nCrunchTemp_*
146+
147+
# MightyMoose
148+
*.mm.*
149+
AutoTest.Net/
150+
151+
# Web workbench (sass)
152+
.sass-cache/
153+
154+
# Installshield output folder
155+
[Ee]xpress/
156+
157+
# DocProject is a documentation generator add-in
158+
DocProject/buildhelp/
159+
DocProject/Help/*.HxT
160+
DocProject/Help/*.HxC
161+
DocProject/Help/*.hhc
162+
DocProject/Help/*.hhk
163+
DocProject/Help/*.hhp
164+
DocProject/Help/Html2
165+
DocProject/Help/html
166+
167+
# Click-Once directory
168+
publish/
169+
170+
# Publish Web Output
171+
*.[Pp]ublish.xml
172+
*.azurePubxml
173+
# TODO: Comment the next line if you want to checkin your web deploy settings
174+
# but database connection strings (with potential passwords) will be unencrypted
175+
*.pubxml
176+
*.publishproj
177+
178+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
179+
# checkin your Azure Web App publish settings, but sensitive information contained
180+
# in these scripts will be unencrypted
181+
PublishScripts/
182+
183+
# NuGet Packages
184+
*.nupkg
185+
# The packages folder can be ignored because of Package Restore
186+
**/packages/*
187+
# except build/, which is used as an MSBuild target.
188+
!**/packages/build/
189+
# Uncomment if necessary however generally it will be regenerated when needed
190+
#!**/packages/repositories.config
191+
# NuGet v3's project.json files produces more ignoreable files
192+
*.nuget.props
193+
*.nuget.targets
194+
195+
# Microsoft Azure Build Output
196+
csx/
197+
*.build.csdef
198+
199+
# Microsoft Azure Emulator
200+
ecf/
201+
rcf/
202+
203+
# Windows Store app package directories and files
204+
AppPackages/
205+
BundleArtifacts/
206+
Package.StoreAssociation.xml
207+
_pkginfo.txt
208+
209+
# Visual Studio cache files
210+
# files ending in .cache can be ignored
211+
*.[Cc]ache
212+
# but keep track of directories ending in .cache
213+
!*.[Cc]ache/
214+
215+
# Others
216+
ClientBin/
217+
~$*
218+
*~
219+
*.dbmdl
220+
*.dbproj.schemaview
221+
*.pfx
222+
*.publishsettings
223+
node_modules/
224+
orleans.codegen.cs
225+
226+
# Since there are multiple workflows, uncomment next line to ignore bower_components
227+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
228+
#bower_components/
229+
230+
# RIA/Silverlight projects
231+
Generated_Code/
232+
233+
# Backup & report files from converting an old project file
234+
# to a newer Visual Studio version. Backup files are not needed,
235+
# because we have git ;-)
236+
_UpgradeReport_Files/
237+
Backup*/
238+
UpgradeLog*.XML
239+
UpgradeLog*.htm
240+
241+
# SQL Server files
242+
*.mdf
243+
*.ldf
244+
245+
# Business Intelligence projects
246+
*.rdl.data
247+
*.bim.layout
248+
*.bim_*.settings
249+
250+
# Microsoft Fakes
251+
FakesAssemblies/
252+
253+
# GhostDoc plugin setting file
254+
*.GhostDoc.xml
255+
256+
# Node.js Tools for Visual Studio
257+
.ntvs_analysis.dat
258+
259+
# Visual Studio 6 build log
260+
*.plg
261+
262+
# Visual Studio 6 workspace options file
263+
*.opt
264+
265+
# Visual Studio LightSwitch build output
266+
**/*.HTMLClient/GeneratedArtifacts
267+
**/*.DesktopClient/GeneratedArtifacts
268+
**/*.DesktopClient/ModelManifest.xml
269+
**/*.Server/GeneratedArtifacts
270+
**/*.Server/ModelManifest.xml
271+
_Pvt_Extensions
272+
273+
# Paket dependency manager
274+
.paket/paket.exe
275+
paket-files/
276+
277+
# FAKE - F# Make
278+
.fake/
279+
280+
# JetBrains Rider
281+
.idea/
282+
*.sln.iml
283+
284+

Assets/WebGLExample.meta

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

Assets/WebGLExample/Spin.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System.Collections;
2+
using System.Collections.Generic;
3+
using UnityEngine;
4+
5+
public class Spin : MonoBehaviour {
6+
7+
// Use this for initialization
8+
void Start () {
9+
10+
}
11+
12+
// Update is called once per frame
13+
void Update () {
14+
gameObject.transform.Rotate(new Vector3(0, Time.deltaTime * 50.0f, 0));
15+
}
16+
}

Assets/WebGLExample/Spin.cs.meta

Lines changed: 12 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)