Skip to content

Commit 8b27fae

Browse files
committed
Added new scenes for scanning and tracking locations.
Added functionality to fetch location data.
1 parent f655b35 commit 8b27fae

18 files changed

+2459
-74
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
# Visual Studio cache directory
2727
.vs/
28+
.vscode/
2829

2930
# Gradle cache directory
3031
.gradle/

RaahiMobile/.gitignore

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# This .gitignore file should be placed at the root of your Unity project directory
2+
#
3+
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
4+
#
5+
/[Ll]ibrary/
6+
/[Tt]emp/
7+
/[Oo]bj/
8+
/[Bb]uild/
9+
/[Bb]uilds/
10+
/[Ll]ogs/
11+
/[Uu]ser[Ss]ettings/
12+
13+
# MemoryCaptures can get excessive in size.
14+
# They also could contain extremely sensitive data
15+
/[Mm]emoryCaptures/
16+
17+
# Recordings can get excessive in size
18+
/[Rr]ecordings/
19+
20+
# Uncomment this line if you wish to ignore the asset store tools plugin
21+
# /[Aa]ssets/AssetStoreTools*
22+
23+
# Autogenerated Jetbrains Rider plugin
24+
/[Aa]ssets/Plugins/Editor/JetBrains*
25+
26+
# Visual Studio cache directory
27+
.vs/
28+
.vscode/
29+
30+
# Gradle cache directory
31+
.gradle/
32+
33+
# Autogenerated VS/MD/Consulo solution and project files
34+
ExportedObj/
35+
.consulo/
36+
*.csproj
37+
*.unityproj
38+
*.sln
39+
*.suo
40+
*.tmp
41+
*.user
42+
*.userprefs
43+
*.pidb
44+
*.booproj
45+
*.svd
46+
*.pdb
47+
*.mdb
48+
*.opendb
49+
*.VC.db
50+
51+
# Unity3D generated meta files
52+
*.pidb.meta
53+
*.pdb.meta
54+
*.mdb.meta
55+
56+
# Unity3D generated file on crash reports
57+
sysinfo.txt
58+
59+
# Builds
60+
*.apk
61+
*.aab
62+
*.unitypackage
63+
*.app
64+
65+
# Crashlytics generated file
66+
crashlytics-build.properties
67+
68+
# Packed Addressables
69+
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
70+
71+
# Temporary auto-generated Android Assets
72+
/[Aa]ssets/[Ss]treamingAssets/aa.meta
73+
/[Aa]ssets/[Ss]treamingAssets/aa/*

0 commit comments

Comments
 (0)