Skip to content

Commit db0c09e

Browse files
committed
initial commit
0 parents  commit db0c09e

File tree

118 files changed

+7618
-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.

118 files changed

+7618
-0
lines changed

.gitignore

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
2+
# Created by https://www.gitignore.io/api/xcode,unity,macos,objective-c,monodevelop,visualstudiocode
3+
# Edit at https://www.gitignore.io/?templates=xcode,unity,macos,objective-c,monodevelop,visualstudiocode
4+
5+
### macOS ###
6+
# General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### MonoDevelop ###
34+
#User Specific
35+
*.userprefs
36+
*.usertasks
37+
38+
#Mono Project Files
39+
*.pidb
40+
*.resources
41+
test-results/
42+
43+
### Objective-C ###
44+
# Xcode
45+
#
46+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
47+
48+
## Build generated
49+
build/
50+
DerivedData/
51+
52+
## Various settings
53+
*.pbxuser
54+
!default.pbxuser
55+
*.mode1v3
56+
!default.mode1v3
57+
*.mode2v3
58+
!default.mode2v3
59+
*.perspectivev3
60+
!default.perspectivev3
61+
xcuserdata/
62+
63+
## Other
64+
*.moved-aside
65+
*.xccheckout
66+
*.xcscmblueprint
67+
68+
## Obj-C/Swift specific
69+
*.hmap
70+
*.ipa
71+
*.dSYM.zip
72+
*.dSYM
73+
74+
# CocoaPods
75+
# We recommend against adding the Pods directory to your .gitignore. However
76+
# you should judge for yourself, the pros and cons are mentioned at:
77+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
78+
# Pods/
79+
# Add this line if you want to avoid checking in source code from the Xcode workspace
80+
# *.xcworkspace
81+
82+
# Carthage
83+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
84+
# Carthage/Checkouts
85+
86+
Carthage/Build
87+
88+
# fastlane
89+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
90+
# screenshots whenever they are needed.
91+
# For more information about the recommended setup visit:
92+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
93+
94+
fastlane/report.xml
95+
fastlane/Preview.html
96+
fastlane/screenshots/**/*.png
97+
fastlane/test_output
98+
99+
# Code Injection
100+
# After new code Injection tools there's a generated folder /iOSInjectionProject
101+
# https://github.com/johnno1962/injectionforxcode
102+
103+
iOSInjectionProject/
104+
105+
### Objective-C Patch ###
106+
107+
### Unity ###
108+
# This .gitignore file should be placed at the root of your Unity project directory
109+
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
110+
/[Ll]ibrary/
111+
/[Tt]emp/
112+
/[Oo]bj/
113+
/[Bb]uild/
114+
/[Bb]uilds/
115+
/[Ll]ogs/
116+
/[Mm]emoryCaptures/
117+
118+
# Never ignore Asset meta data
119+
!/[Aa]ssets/**/*.meta
120+
121+
# Uncomment this line if you wish to ignore the asset store tools plugin
122+
# /[Aa]ssets/AssetStoreTools*
123+
124+
# TextMesh Pro files
125+
[Aa]ssets/TextMesh*Pro/
126+
127+
# Autogenerated Jetbrains Rider plugin
128+
[Aa]ssets/Plugins/Editor/JetBrains*
129+
130+
# Visual Studio cache directory
131+
.vs/
132+
133+
# Gradle cache directory
134+
.gradle/
135+
136+
# Autogenerated VS/MD/Consulo solution and project files
137+
ExportedObj/
138+
.consulo/
139+
*.csproj
140+
*.unityproj
141+
*.sln
142+
*.suo
143+
*.tmp
144+
*.user
145+
*.booproj
146+
*.svd
147+
*.pdb
148+
*.mdb
149+
*.opendb
150+
*.VC.db
151+
152+
# Unity3D generated meta files
153+
*.pidb.meta
154+
*.pdb.meta
155+
*.mdb.meta
156+
157+
# Unity3D generated file on crash reports
158+
sysinfo.txt
159+
160+
# Builds
161+
*.apk
162+
*.unitypackage
163+
*.symbols.zip
164+
165+
# Crashlytics generated file
166+
crashlytics-build.properties
167+
168+
169+
### VisualStudioCode ###
170+
.vscode/*
171+
!.vscode/settings.json
172+
!.vscode/tasks.json
173+
!.vscode/launch.json
174+
!.vscode/extensions.json
175+
176+
### VisualStudioCode Patch ###
177+
# Ignore all local history of files
178+
.history
179+
180+
### Xcode ###
181+
# Xcode
182+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
183+
184+
## User settings
185+
186+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
187+
188+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
189+
190+
## Xcode Patch
191+
*.xcodeproj/*
192+
!*.xcodeproj/project.pbxproj
193+
!*.xcodeproj/xcshareddata/
194+
!*.xcworkspace/contents.xcworkspacedata
195+
/*.gcno
196+
197+
### Xcode Patch ###
198+
**/xcshareddata/WorkspaceSettings.xcsettings
199+
200+
# End of https://www.gitignore.io/api/xcode,unity,macos,objective-c,monodevelop,visualstudiocode

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "NSSpeechTest"]
2+
path = NSSpeechTest
3+
url = https://github.com/JotaroS/NSSpeechTest.git

.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+
}

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.

Assets/Plugins/NSSpeechForUnity.bundle.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.

Assets/Plugins/NSSpeechForUnity.bundle/Contents.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.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>BuildMachineOSBuild</key>
6+
<string>19C57</string>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>en</string>
9+
<key>CFBundleExecutable</key>
10+
<string>NSSpeechForUnity</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>jotaro.shigeyama.NSSpeechForUnity</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundleName</key>
16+
<string>NSSpeechForUnity</string>
17+
<key>CFBundlePackageType</key>
18+
<string>BNDL</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>1.0</string>
21+
<key>CFBundleSupportedPlatforms</key>
22+
<array>
23+
<string>MacOSX</string>
24+
</array>
25+
<key>CFBundleVersion</key>
26+
<string>1</string>
27+
<key>DTCompiler</key>
28+
<string>com.apple.compilers.llvm.clang.1_0</string>
29+
<key>DTPlatformBuild</key>
30+
<string>11C29</string>
31+
<key>DTPlatformVersion</key>
32+
<string>GM</string>
33+
<key>DTSDKBuild</key>
34+
<string>19B90</string>
35+
<key>DTSDKName</key>
36+
<string>macosx10.15</string>
37+
<key>DTXcode</key>
38+
<string>1130</string>
39+
<key>DTXcodeBuild</key>
40+
<string>11C29</string>
41+
<key>LSMinimumSystemVersion</key>
42+
<string>10.15</string>
43+
<key>NSHumanReadableCopyright</key>
44+
<string>Copyright © 2020 Jotaro Shigeyama. All rights reserved.</string>
45+
</dict>
46+
</plist>

Assets/Plugins/NSSpeechForUnity.bundle/Contents/Info.plist.meta

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

Assets/Plugins/NSSpeechForUnity.bundle/Contents/MacOS.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.
39.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)