Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
curvedflats
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
6
Issues
6
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Flatland
curvedflats
Commits
8299a897
Commit
8299a897
authored
Aug 16, 2019
by
17김현학
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into model-ui-integration-work
parents
b78482ab
800d5f60
Changes
32
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
32 changed files
with
3725 additions
and
13 deletions
+3725
-13
PathRenderer.cs
Assets/Scripts/PathRenderer.cs
+4
-4
Square.cs
Assets/Scripts/Square.cs
+2
-2
UIManager.cs
Assets/Scripts/UIManager.cs
+7
-7
Packages-Update.log
Logs/Packages-Update.log
+18
-0
A Neon Glow Lights The Way (VA-11 HALL-A).mp3
...mple/Assets/A Neon Glow Lights The Way (VA-11 HALL-A).mp3
+0
-0
A Neon Glow Lights The Way (VA-11 HALL-A).mp3.meta
...Assets/A Neon Glow Lights The Way (VA-11 HALL-A).mp3.meta
+22
-0
Scenes.meta
Start sample/Assets/Scenes.meta
+8
-0
level select.unity
Start sample/Assets/Scenes/level select.unity
+1345
-0
level select.unity.meta
Start sample/Assets/Scenes/level select.unity.meta
+7
-0
mainmenu.unity
Start sample/Assets/Scenes/mainmenu.unity
+1145
-0
mainmenu.unity.meta
Start sample/Assets/Scenes/mainmenu.unity.meta
+7
-0
relativity.jpg
Start sample/Assets/relativity.jpg
+0
-0
relativity.jpg.meta
Start sample/Assets/relativity.jpg.meta
+101
-0
resized back.png
Start sample/Assets/resized back.png
+0
-0
resized back.png.meta
Start sample/Assets/resized back.png.meta
+101
-0
Packages-Update.log
Start sample/Logs/Packages-Update.log
+31
-0
manifest.json
Start sample/Packages/manifest.json
+49
-0
AudioManager.asset
Start sample/ProjectSettings/AudioManager.asset
+19
-0
ClusterInputManager.asset
Start sample/ProjectSettings/ClusterInputManager.asset
+6
-0
DynamicsManager.asset
Start sample/ProjectSettings/DynamicsManager.asset
+34
-0
EditorBuildSettings.asset
Start sample/ProjectSettings/EditorBuildSettings.asset
+8
-0
EditorSettings.asset
Start sample/ProjectSettings/EditorSettings.asset
+25
-0
InputManager.asset
Start sample/ProjectSettings/InputManager.asset
+295
-0
NavMeshAreas.asset
Start sample/ProjectSettings/NavMeshAreas.asset
+91
-0
Physics2DSettings.asset
Start sample/ProjectSettings/Physics2DSettings.asset
+56
-0
PresetManager.asset
Start sample/ProjectSettings/PresetManager.asset
+6
-0
QualitySettings.asset
Start sample/ProjectSettings/QualitySettings.asset
+231
-0
TagManager.asset
Start sample/ProjectSettings/TagManager.asset
+43
-0
TimeManager.asset
Start sample/ProjectSettings/TimeManager.asset
+9
-0
UnityConnectSettings.asset
Start sample/ProjectSettings/UnityConnectSettings.asset
+34
-0
VFXManager.asset
Start sample/ProjectSettings/VFXManager.asset
+11
-0
XRSettings.asset
Start sample/ProjectSettings/XRSettings.asset
+10
-0
No files found.
Assets/Scripts/PathRenderer.cs
View file @
8299a897
...
...
@@ -25,9 +25,9 @@ public class PathRenderer : MonoBehaviour
LineRenderer
_pathRenderer
;
float
_originalPathColliderY
;
public
BackgroundMovement
Background
public
BackgroundMovement
Background
{
get
get
{
return
background
;
}
...
...
@@ -156,7 +156,7 @@ public class PathRenderer : MonoBehaviour
{
List
<
Vector3
>
list
=
new
List
<
Vector3
>();
foreach
(
var
a
in
square
.
pathList
)
foreach
(
var
a
in
square
.
pathList
)
{
//xy -> xz
list
.
Add
(
new
Vector3
(
a
.
x
,
0
,
a
.
y
));
...
...
@@ -237,7 +237,7 @@ public class PathRenderer : MonoBehaviour
levelManager
.
player
.
v
=
finaldeltav
;
while
(
true
)
while
(
true
)
{
var
currentpos
=
new
Vector3
(
levelManager
.
player
.
transform
.
position
.
x
,
0
,
levelManager
.
player
.
transform
.
position
.
z
);
var
traveledpos
=
currentpos
-
startpos
;
...
...
Assets/Scripts/Square.cs
View file @
8299a897
...
...
@@ -23,11 +23,11 @@ public class Square : FlatLandObject
public
Vector3
GetDestPoint
(
int
n
)
{
return
pathList
[
n
+
1
];
return
pathList
[
n
+
1
];
}
public
float
GetPathVelocity
(
int
n
)
{
return
pathVelocity
[
n
+
1
];
}
}
\ No newline at end of file
}
Assets/Scripts/UIManager.cs
View file @
8299a897
...
...
@@ -59,7 +59,7 @@ public class UIManager : MonoBehaviour
mytime
.
text
=
levelManager
.
player
.
time
.
ToString
()
+
" s"
;
//clock1time.text = clock1.GetTime().ToString() + " s";
//clock2time.text = clock2.GetTime().ToString() + " s";
if
(
levelManager
.
winstate
)
if
(
levelManager
.
winstate
)
{
wintext
.
gameObject
.
SetActive
(
true
);
}
...
...
@@ -96,7 +96,7 @@ public class UIManager : MonoBehaviour
TryFIndPath
();
}
}
else
if
(
sliderflag
==
1
&&
Input
.
GetMouseButton
(
0
))
else
if
(
sliderflag
==
1
&&
Input
.
GetMouseButton
(
0
))
{
if
(
_pathUI
.
activeSelf
==
true
&&
prevSelectPathNum
!=
-
1
)
{
...
...
@@ -113,22 +113,22 @@ public class UIManager : MonoBehaviour
//player movement
if
(
Input
.
GetKeyDown
(
"w"
))
if
(
Input
.
GetKeyDown
(
"w"
))
{
var
tmp
=
accelslider
.
GetLogScaleValue
()
*
(
float
)
Constants
.
c
;
levelManager
.
player
.
alpha
+=
new
Vector3
(
0
,
0
,
tmp
);
}
else
if
(
Input
.
GetKeyDown
(
"a"
))
else
if
(
Input
.
GetKeyDown
(
"a"
))
{
var
tmp
=
accelslider
.
GetLogScaleValue
()
*
(
float
)
Constants
.
c
;
levelManager
.
player
.
alpha
+=
new
Vector3
(-
tmp
,
0
,
0
);
}
else
if
(
Input
.
GetKeyDown
(
"s"
))
else
if
(
Input
.
GetKeyDown
(
"s"
))
{
var
tmp
=
accelslider
.
GetLogScaleValue
()
*
(
float
)
Constants
.
c
;
levelManager
.
player
.
alpha
+=
new
Vector3
(
0
,
0
,
-
tmp
);
}
else
if
(
Input
.
GetKeyDown
(
"d"
))
else
if
(
Input
.
GetKeyDown
(
"d"
))
{
var
tmp
=
accelslider
.
GetLogScaleValue
()
*
(
float
)
Constants
.
c
;
levelManager
.
player
.
alpha
+=
new
Vector3
(
tmp
,
0
,
0
);
...
...
@@ -254,7 +254,7 @@ public class UIManager : MonoBehaviour
}
}
}
catch
(
Exception
e
)
catch
(
Exception
e
)
{
Debug
.
Log
(
e
);
}
...
...
Logs/Packages-Update.log
0 → 100644
View file @
8299a897
=== Thu Aug 15 23:52:17 2019
Packages were changed.
Update Mode: updateDependencies
The following packages were added:
com.unity.2d.tilemap@1.0.0
com.unity.ext.nunit@1.0.0
com.unity.test-framework@1.0.13
com.unity.2d.sprite@1.0.0
com.unity.ide.vscode@1.0.7
com.unity.ide.rider@1.0.8
com.unity.ugui@1.0.0
com.unity.modules.androidjni@1.0.0
The following packages were updated:
com.unity.package-manager-ui from version 2.1.2 to 2.2.0
com.unity.timeline from version 1.0.0 to 1.1.0
Start sample/Assets/A Neon Glow Lights The Way (VA-11 HALL-A).mp3
0 → 100644
View file @
8299a897
File added
Start sample/Assets/A Neon Glow Lights The Way (VA-11 HALL-A).mp3.meta
0 → 100644
View file @
8299a897
fileFormatVersion: 2
guid: 70e9d688ef2cbf041a48d991b435e7e6
AudioImporter:
externalObjects: {}
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
ambisonic: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:
Start sample/Assets/Scenes.meta
0 → 100644
View file @
8299a897
fileFormatVersion: 2
guid: 8f10af950d836d844813125434507941
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Start sample/Assets/Scenes/level select.unity
0 → 100644
View file @
8299a897
This diff is collapsed.
Click to expand it.
Start sample/Assets/Scenes/level select.unity.meta
0 → 100644
View file @
8299a897
fileFormatVersion: 2
guid: ac215a62b362fed4c96e1b743e6129d6
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Start sample/Assets/Scenes/mainmenu.unity
0 → 100644
View file @
8299a897
This diff is collapsed.
Click to expand it.
Start sample/Assets/Scenes/mainmenu.unity.meta
0 → 100644
View file @
8299a897
fileFormatVersion: 2
guid: aa1340b26a0877b409d173fe668a77e4
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Start sample/Assets/relativity.jpg
0 → 100644
View file @
8299a897
3.52 KB
Start sample/Assets/relativity.jpg.meta
0 → 100644
View file @
8299a897
fileFormatVersion: 2
guid: 8c1d4338fd4c5b646bf53b5caf88c042
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 10
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
Start sample/Assets/resized back.png
0 → 100644
View file @
8299a897
118 KB
Start sample/Assets/resized back.png.meta
0 → 100644
View file @
8299a897
fileFormatVersion: 2
guid: 34f645eda164c71458b9ce09965e2a81
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 10
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
Start sample/Logs/Packages-Update.log
0 → 100644
View file @
8299a897
=== Tue Aug 13 20:26:05 2019
Packages were changed.
Update Mode: mergeDefaultDependencies
The following packages were updated:
com.unity.analytics from version 3.2.2 to 3.3.2
com.unity.collab-proxy from version 1.2.9 to 1.2.16
com.unity.package-manager-ui from version 2.1.1 to 2.1.2
com.unity.purchasing from version 2.0.1 to 2.0.6
com.unity.textmeshpro from version 1.3.0 to 2.0.1
com.unity.timeline from version 0.0.0-builtin to 1.0.0
=== Fri Aug 16 00:02:20 2019
Packages were changed.
Update Mode: updateDependencies
The following packages were added:
com.unity.2d.tilemap@1.0.0
com.unity.ext.nunit@1.0.0
com.unity.test-framework@1.0.13
com.unity.2d.sprite@1.0.0
com.unity.ide.vscode@1.0.7
com.unity.ide.rider@1.0.8
com.unity.ugui@1.0.0
com.unity.modules.androidjni@1.0.0
The following packages were updated:
com.unity.package-manager-ui from version 2.1.2 to 2.2.0
com.unity.timeline from version 1.0.0 to 1.1.0
Start sample/Packages/manifest.json
0 → 100644
View file @
8299a897
{
"dependencies"
:
{
"com.unity.2d.sprite"
:
"1.0.0"
,
"com.unity.2d.tilemap"
:
"1.0.0"
,
"com.unity.ads"
:
"2.0.8"
,
"com.unity.analytics"
:
"3.3.2"
,
"com.unity.collab-proxy"
:
"1.2.16"
,
"com.unity.ext.nunit"
:
"1.0.0"
,
"com.unity.ide.rider"
:
"1.0.8"
,
"com.unity.ide.vscode"
:
"1.0.7"
,
"com.unity.package-manager-ui"
:
"2.2.0"
,
"com.unity.purchasing"
:
"2.0.6"
,
"com.unity.test-framework"
:
"1.0.13"
,
"com.unity.textmeshpro"
:
"2.0.1"
,
"com.unity.timeline"
:
"1.1.0"
,
"com.unity.ugui"
:
"1.0.0"
,
"com.unity.modules.ai"
:
"1.0.0"
,
"com.unity.modules.androidjni"
:
"1.0.0"
,
"com.unity.modules.animation"
:
"1.0.0"
,
"com.unity.modules.assetbundle"
:
"1.0.0"
,
"com.unity.modules.audio"
:
"1.0.0"
,
"com.unity.modules.cloth"
:
"1.0.0"
,
"com.unity.modules.director"
:
"1.0.0"
,
"com.unity.modules.imageconversion"
:
"1.0.0"
,
"com.unity.modules.imgui"
:
"1.0.0"
,
"com.unity.modules.jsonserialize"
:
"1.0.0"
,
"com.unity.modules.particlesystem"
:
"1.0.0"
,
"com.unity.modules.physics"
:
"1.0.0"
,
"com.unity.modules.physics2d"
:
"1.0.0"
,
"com.unity.modules.screencapture"
:
"1.0.0"
,
"com.unity.modules.terrain"
:
"1.0.0"
,
"com.unity.modules.terrainphysics"
:
"1.0.0"
,
"com.unity.modules.tilemap"
:
"1.0.0"
,
"com.unity.modules.ui"
:
"1.0.0"
,
"com.unity.modules.uielements"
:
"1.0.0"
,
"com.unity.modules.umbra"
:
"1.0.0"
,
"com.unity.modules.unityanalytics"
:
"1.0.0"
,
"com.unity.modules.unitywebrequest"
:
"1.0.0"
,
"com.unity.modules.unitywebrequestassetbundle"
:
"1.0.0"
,
"com.unity.modules.unitywebrequestaudio"
:
"1.0.0"
,
"com.unity.modules.unitywebrequesttexture"
:
"1.0.0"
,
"com.unity.modules.unitywebrequestwww"
:
"1.0.0"
,
"com.unity.modules.vehicles"
:
"1.0.0"
,
"com.unity.modules.video"
:
"1.0.0"
,
"com.unity.modules.vr"
:
"1.0.0"
,
"com.unity.modules.wind"
:
"1.0.0"
,
"com.unity.modules.xr"
:
"1.0.0"
}
}
Start sample/ProjectSettings/AudioManager.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!11
&1
AudioManager
:
m_ObjectHideFlags
:
0
serializedVersion
:
2
m_Volume
:
1
Rolloff Scale
:
1
Doppler Factor
:
1
Default Speaker Mode
:
2
m_SampleRate
:
0
m_DSPBufferSize
:
1024
m_VirtualVoiceCount
:
512
m_RealVoiceCount
:
32
m_SpatializerPlugin
:
m_AmbisonicDecoderPlugin
:
m_DisableAudio
:
0
m_VirtualizeEffects
:
1
m_RequestedDSPBufferSize
:
1024
Start sample/ProjectSettings/ClusterInputManager.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!236
&1
ClusterInputManager
:
m_ObjectHideFlags
:
0
m_Inputs
:
[]
Start sample/ProjectSettings/DynamicsManager.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!55
&1
PhysicsManager
:
m_ObjectHideFlags
:
0
serializedVersion
:
11
m_Gravity
:
{
x
:
0
,
y
:
-9.81
,
z
:
0
}
m_DefaultMaterial
:
{
fileID
:
0
}
m_BounceThreshold
:
2
m_SleepThreshold
:
0.005
m_DefaultContactOffset
:
0.01
m_DefaultSolverIterations
:
6
m_DefaultSolverVelocityIterations
:
1
m_QueriesHitBackfaces
:
0
m_QueriesHitTriggers
:
1
m_EnableAdaptiveForce
:
0
m_ClothInterCollisionDistance
:
0
m_ClothInterCollisionStiffness
:
0
m_ContactsGeneration
:
1
m_LayerCollisionMatrix
:
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
m_AutoSimulation
:
1
m_AutoSyncTransforms
:
0
m_ReuseCollisionCallbacks
:
1
m_ClothInterCollisionSettingsToggle
:
0
m_ContactPairsMode
:
0
m_BroadphaseType
:
0
m_WorldBounds
:
m_Center
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Extent
:
{
x
:
250
,
y
:
250
,
z
:
250
}
m_WorldSubdivisions
:
8
m_FrictionType
:
0
m_EnableEnhancedDeterminism
:
0
m_EnableUnifiedHeightmaps
:
1
m_DefaultMaxAngluarSpeed
:
7
Start sample/ProjectSettings/EditorBuildSettings.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!1045
&1
EditorBuildSettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
2
m_Scenes
:
[]
m_configObjects
:
{}
Start sample/ProjectSettings/EditorSettings.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!159
&1
EditorSettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
7
m_ExternalVersionControlSupport
:
Visible Meta Files
m_SerializationMode
:
2
m_LineEndingsForNewScripts
:
2
m_DefaultBehaviorMode
:
0
m_PrefabRegularEnvironment
:
{
fileID
:
0
}
m_PrefabUIEnvironment
:
{
fileID
:
0
}
m_SpritePackerMode
:
0
m_SpritePackerPaddingPower
:
1
m_EtcTextureCompressorBehavior
:
1
m_EtcTextureFastCompressor
:
1
m_EtcTextureNormalCompressor
:
2
m_EtcTextureBestCompressor
:
4
m_ProjectGenerationIncludedExtensions
:
txt;xml;fnt;cd;asmdef;rsp
m_ProjectGenerationRootNamespace
:
m_CollabEditorSettings
:
inProgressEnabled
:
1
m_EnableTextureStreamingInEditMode
:
1
m_EnableTextureStreamingInPlayMode
:
1
m_AsyncShaderCompilation
:
1
Start sample/ProjectSettings/InputManager.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!13
&1
InputManager
:
m_ObjectHideFlags
:
0
serializedVersion
:
2
m_Axes
:
-
serializedVersion
:
3
m_Name
:
Horizontal
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
left
positiveButton
:
right
altNegativeButton
:
a
altPositiveButton
:
d
gravity
:
3
dead
:
0.001
sensitivity
:
3
snap
:
1
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Vertical
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
down
positiveButton
:
up
altNegativeButton
:
s
altPositiveButton
:
w
gravity
:
3
dead
:
0.001
sensitivity
:
3
snap
:
1
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Fire1
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
left ctrl
altNegativeButton
:
altPositiveButton
:
mouse
0
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Fire2
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
left alt
altNegativeButton
:
altPositiveButton
:
mouse
1
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Fire3
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
left shift
altNegativeButton
:
altPositiveButton
:
mouse
2
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Jump
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
space
altNegativeButton
:
altPositiveButton
:
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Mouse X
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
altNegativeButton
:
altPositiveButton
:
gravity
:
0
dead
:
0
sensitivity
:
0.1
snap
:
0
invert
:
0
type
:
1
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Mouse Y
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
altNegativeButton
:
altPositiveButton
:
gravity
:
0
dead
:
0
sensitivity
:
0.1
snap
:
0
invert
:
0
type
:
1
axis
:
1
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Mouse ScrollWheel
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
altNegativeButton
:
altPositiveButton
:
gravity
:
0
dead
:
0
sensitivity
:
0.1
snap
:
0
invert
:
0
type
:
1
axis
:
2
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Horizontal
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
altNegativeButton
:
altPositiveButton
:
gravity
:
0
dead
:
0.19
sensitivity
:
1
snap
:
0
invert
:
0
type
:
2
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Vertical
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
altNegativeButton
:
altPositiveButton
:
gravity
:
0
dead
:
0.19
sensitivity
:
1
snap
:
0
invert
:
1
type
:
2
axis
:
1
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Fire1
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
joystick button
0
altNegativeButton
:
altPositiveButton
:
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Fire2
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
joystick button
1
altNegativeButton
:
altPositiveButton
:
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Fire3
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
joystick button
2
altNegativeButton
:
altPositiveButton
:
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Jump
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
joystick button
3
altNegativeButton
:
altPositiveButton
:
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Submit
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
return
altNegativeButton
:
altPositiveButton
:
joystick button
0
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Submit
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
enter
altNegativeButton
:
altPositiveButton
:
space
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
-
serializedVersion
:
3
m_Name
:
Cancel
descriptiveName
:
descriptiveNegativeName
:
negativeButton
:
positiveButton
:
escape
altNegativeButton
:
altPositiveButton
:
joystick button
1
gravity
:
1000
dead
:
0.001
sensitivity
:
1000
snap
:
0
invert
:
0
type
:
0
axis
:
0
joyNum
:
0
Start sample/ProjectSettings/NavMeshAreas.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!126
&1
NavMeshProjectSettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
2
areas
:
-
name
:
Walkable
cost
:
1
-
name
:
Not Walkable
cost
:
1
-
name
:
Jump
cost
:
2
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
-
name
:
cost
:
1
m_LastAgentTypeID
:
-887442657
m_Settings
:
-
serializedVersion
:
2
agentTypeID
:
0
agentRadius
:
0.5
agentHeight
:
2
agentSlope
:
45
agentClimb
:
0.75
ledgeDropHeight
:
0
maxJumpAcrossDistance
:
0
minRegionArea
:
2
manualCellSize
:
0
cellSize
:
0.16666667
manualTileSize
:
0
tileSize
:
256
accuratePlacement
:
0
debug
:
m_Flags
:
0
m_SettingNames
:
-
Humanoid
Start sample/ProjectSettings/Physics2DSettings.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!19
&1
Physics2DSettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
4
m_Gravity
:
{
x
:
0
,
y
:
-9.81
}
m_DefaultMaterial
:
{
fileID
:
0
}
m_VelocityIterations
:
8
m_PositionIterations
:
3
m_VelocityThreshold
:
1
m_MaxLinearCorrection
:
0.2
m_MaxAngularCorrection
:
8
m_MaxTranslationSpeed
:
100
m_MaxRotationSpeed
:
360
m_BaumgarteScale
:
0.2
m_BaumgarteTimeOfImpactScale
:
0.75
m_TimeToSleep
:
0.5
m_LinearSleepTolerance
:
0.01
m_AngularSleepTolerance
:
2
m_DefaultContactOffset
:
0.01
m_JobOptions
:
serializedVersion
:
2
useMultithreading
:
0
useConsistencySorting
:
0
m_InterpolationPosesPerJob
:
100
m_NewContactsPerJob
:
30
m_CollideContactsPerJob
:
100
m_ClearFlagsPerJob
:
200
m_ClearBodyForcesPerJob
:
200
m_SyncDiscreteFixturesPerJob
:
50
m_SyncContinuousFixturesPerJob
:
50
m_FindNearestContactsPerJob
:
100
m_UpdateTriggerContactsPerJob
:
100
m_IslandSolverCostThreshold
:
100
m_IslandSolverBodyCostScale
:
1
m_IslandSolverContactCostScale
:
10
m_IslandSolverJointCostScale
:
10
m_IslandSolverBodiesPerJob
:
50
m_IslandSolverContactsPerJob
:
50
m_AutoSimulation
:
1
m_QueriesHitTriggers
:
1
m_QueriesStartInColliders
:
1
m_CallbacksOnDisable
:
1
m_ReuseCollisionCallbacks
:
1
m_AutoSyncTransforms
:
0
m_AlwaysShowColliders
:
0
m_ShowColliderSleep
:
1
m_ShowColliderContacts
:
0
m_ShowColliderAABB
:
0
m_ContactArrowScale
:
0.2
m_ColliderAwakeColor
:
{
r
:
0.5686275
,
g
:
0.95686275
,
b
:
0.54509807
,
a
:
0.7529412
}
m_ColliderAsleepColor
:
{
r
:
0.5686275
,
g
:
0.95686275
,
b
:
0.54509807
,
a
:
0.36078432
}
m_ColliderContactColor
:
{
r
:
1
,
g
:
0
,
b
:
1
,
a
:
0.6862745
}
m_ColliderAABBColor
:
{
r
:
1
,
g
:
1
,
b
:
0
,
a
:
0.2509804
}
m_LayerCollisionMatrix
:
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
Start sample/ProjectSettings/PresetManager.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!1386491679
&1
PresetManager
:
m_ObjectHideFlags
:
0
m_DefaultList
:
[]
Start sample/ProjectSettings/QualitySettings.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!47
&1
QualitySettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
5
m_CurrentQuality
:
5
m_QualitySettings
:
-
serializedVersion
:
2
name
:
Very Low
pixelLightCount
:
0
shadows
:
0
shadowResolution
:
0
shadowProjection
:
1
shadowCascades
:
1
shadowDistance
:
15
shadowNearPlaneOffset
:
3
shadowCascade2Split
:
0.33333334
shadowCascade4Split
:
{
x
:
0.06666667
,
y
:
0.2
,
z
:
0.46666667
}
shadowmaskMode
:
0
blendWeights
:
1
textureQuality
:
1
anisotropicTextures
:
0
antiAliasing
:
0
softParticles
:
0
softVegetation
:
0
realtimeReflectionProbes
:
0
billboardsFaceCameraPosition
:
0
vSyncCount
:
0
lodBias
:
0.3
maximumLODLevel
:
0
streamingMipmapsActive
:
0
streamingMipmapsAddAllCameras
:
1
streamingMipmapsMemoryBudget
:
512
streamingMipmapsRenderersPerFrame
:
512
streamingMipmapsMaxLevelReduction
:
2
streamingMipmapsMaxFileIORequests
:
1024
particleRaycastBudget
:
4
asyncUploadTimeSlice
:
2
asyncUploadBufferSize
:
16
asyncUploadPersistentBuffer
:
1
resolutionScalingFixedDPIFactor
:
1
excludedTargetPlatforms
:
[]
-
serializedVersion
:
2
name
:
Low
pixelLightCount
:
0
shadows
:
0
shadowResolution
:
0
shadowProjection
:
1
shadowCascades
:
1
shadowDistance
:
20
shadowNearPlaneOffset
:
3
shadowCascade2Split
:
0.33333334
shadowCascade4Split
:
{
x
:
0.06666667
,
y
:
0.2
,
z
:
0.46666667
}
shadowmaskMode
:
0
blendWeights
:
2
textureQuality
:
0
anisotropicTextures
:
0
antiAliasing
:
0
softParticles
:
0
softVegetation
:
0
realtimeReflectionProbes
:
0
billboardsFaceCameraPosition
:
0
vSyncCount
:
0
lodBias
:
0.4
maximumLODLevel
:
0
streamingMipmapsActive
:
0
streamingMipmapsAddAllCameras
:
1
streamingMipmapsMemoryBudget
:
512
streamingMipmapsRenderersPerFrame
:
512
streamingMipmapsMaxLevelReduction
:
2
streamingMipmapsMaxFileIORequests
:
1024
particleRaycastBudget
:
16
asyncUploadTimeSlice
:
2
asyncUploadBufferSize
:
16
asyncUploadPersistentBuffer
:
1
resolutionScalingFixedDPIFactor
:
1
excludedTargetPlatforms
:
[]
-
serializedVersion
:
2
name
:
Medium
pixelLightCount
:
1
shadows
:
1
shadowResolution
:
0
shadowProjection
:
1
shadowCascades
:
1
shadowDistance
:
20
shadowNearPlaneOffset
:
3
shadowCascade2Split
:
0.33333334
shadowCascade4Split
:
{
x
:
0.06666667
,
y
:
0.2
,
z
:
0.46666667
}
shadowmaskMode
:
0
blendWeights
:
2
textureQuality
:
0
anisotropicTextures
:
1
antiAliasing
:
0
softParticles
:
0
softVegetation
:
0
realtimeReflectionProbes
:
0
billboardsFaceCameraPosition
:
0
vSyncCount
:
1
lodBias
:
0.7
maximumLODLevel
:
0
streamingMipmapsActive
:
0
streamingMipmapsAddAllCameras
:
1
streamingMipmapsMemoryBudget
:
512
streamingMipmapsRenderersPerFrame
:
512
streamingMipmapsMaxLevelReduction
:
2
streamingMipmapsMaxFileIORequests
:
1024
particleRaycastBudget
:
64
asyncUploadTimeSlice
:
2
asyncUploadBufferSize
:
16
asyncUploadPersistentBuffer
:
1
resolutionScalingFixedDPIFactor
:
1
excludedTargetPlatforms
:
[]
-
serializedVersion
:
2
name
:
High
pixelLightCount
:
2
shadows
:
2
shadowResolution
:
1
shadowProjection
:
1
shadowCascades
:
2
shadowDistance
:
40
shadowNearPlaneOffset
:
3
shadowCascade2Split
:
0.33333334
shadowCascade4Split
:
{
x
:
0.06666667
,
y
:
0.2
,
z
:
0.46666667
}
shadowmaskMode
:
1
blendWeights
:
2
textureQuality
:
0
anisotropicTextures
:
1
antiAliasing
:
0
softParticles
:
0
softVegetation
:
1
realtimeReflectionProbes
:
1
billboardsFaceCameraPosition
:
1
vSyncCount
:
1
lodBias
:
1
maximumLODLevel
:
0
streamingMipmapsActive
:
0
streamingMipmapsAddAllCameras
:
1
streamingMipmapsMemoryBudget
:
512
streamingMipmapsRenderersPerFrame
:
512
streamingMipmapsMaxLevelReduction
:
2
streamingMipmapsMaxFileIORequests
:
1024
particleRaycastBudget
:
256
asyncUploadTimeSlice
:
2
asyncUploadBufferSize
:
16
asyncUploadPersistentBuffer
:
1
resolutionScalingFixedDPIFactor
:
1
excludedTargetPlatforms
:
[]
-
serializedVersion
:
2
name
:
Very High
pixelLightCount
:
3
shadows
:
2
shadowResolution
:
2
shadowProjection
:
1
shadowCascades
:
2
shadowDistance
:
70
shadowNearPlaneOffset
:
3
shadowCascade2Split
:
0.33333334
shadowCascade4Split
:
{
x
:
0.06666667
,
y
:
0.2
,
z
:
0.46666667
}
shadowmaskMode
:
1
blendWeights
:
4
textureQuality
:
0
anisotropicTextures
:
2
antiAliasing
:
2
softParticles
:
1
softVegetation
:
1
realtimeReflectionProbes
:
1
billboardsFaceCameraPosition
:
1
vSyncCount
:
1
lodBias
:
1.5
maximumLODLevel
:
0
streamingMipmapsActive
:
0
streamingMipmapsAddAllCameras
:
1
streamingMipmapsMemoryBudget
:
512
streamingMipmapsRenderersPerFrame
:
512
streamingMipmapsMaxLevelReduction
:
2
streamingMipmapsMaxFileIORequests
:
1024
particleRaycastBudget
:
1024
asyncUploadTimeSlice
:
2
asyncUploadBufferSize
:
16
asyncUploadPersistentBuffer
:
1
resolutionScalingFixedDPIFactor
:
1
excludedTargetPlatforms
:
[]
-
serializedVersion
:
2
name
:
Ultra
pixelLightCount
:
4
shadows
:
2
shadowResolution
:
2
shadowProjection
:
1
shadowCascades
:
4
shadowDistance
:
150
shadowNearPlaneOffset
:
3
shadowCascade2Split
:
0.33333334
shadowCascade4Split
:
{
x
:
0.06666667
,
y
:
0.2
,
z
:
0.46666667
}
shadowmaskMode
:
1
blendWeights
:
4
textureQuality
:
0
anisotropicTextures
:
2
antiAliasing
:
2
softParticles
:
1
softVegetation
:
1
realtimeReflectionProbes
:
1
billboardsFaceCameraPosition
:
1
vSyncCount
:
1
lodBias
:
2
maximumLODLevel
:
0
streamingMipmapsActive
:
0
streamingMipmapsAddAllCameras
:
1
streamingMipmapsMemoryBudget
:
512
streamingMipmapsRenderersPerFrame
:
512
streamingMipmapsMaxLevelReduction
:
2
streamingMipmapsMaxFileIORequests
:
1024
particleRaycastBudget
:
4096
asyncUploadTimeSlice
:
2
asyncUploadBufferSize
:
16
asyncUploadPersistentBuffer
:
1
resolutionScalingFixedDPIFactor
:
1
excludedTargetPlatforms
:
[]
m_PerPlatformDefaultQuality
:
Android
:
2
Lumin
:
5
Nintendo 3DS
:
5
Nintendo Switch
:
5
PS4
:
5
PSP2
:
2
Standalone
:
5
WebGL
:
3
Windows Store Apps
:
5
XboxOne
:
5
iPhone
:
2
tvOS
:
2
Start sample/ProjectSettings/TagManager.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!78
&1
TagManager
:
serializedVersion
:
2
tags
:
[]
layers
:
-
Default
-
TransparentFX
-
Ignore Raycast
-
-
Water
-
UI
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
m_SortingLayers
:
-
name
:
Default
uniqueID
:
0
locked
:
0
Start sample/ProjectSettings/TimeManager.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!5
&1
TimeManager
:
m_ObjectHideFlags
:
0
Fixed Timestep
:
0.02
Maximum Allowed Timestep
:
0.33333334
m_TimeScale
:
1
Maximum Particle Timestep
:
0.03
Start sample/ProjectSettings/UnityConnectSettings.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!310
&1
UnityConnectSettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
1
m_Enabled
:
0
m_TestMode
:
0
m_EventOldUrl
:
https://api.uca.cloud.unity3d.com/v1/events
m_EventUrl
:
https://cdp.cloud.unity3d.com/v1/events
m_ConfigUrl
:
https://config.uca.cloud.unity3d.com
m_TestInitMode
:
0
CrashReportingSettings
:
m_EventUrl
:
https://perf-events.cloud.unity3d.com
m_Enabled
:
0
m_LogBufferSize
:
10
m_CaptureEditorExceptions
:
1
UnityPurchasingSettings
:
m_Enabled
:
0
m_TestMode
:
0
UnityAnalyticsSettings
:
m_Enabled
:
0
m_TestMode
:
0
m_InitializeOnStartup
:
1
UnityAdsSettings
:
m_Enabled
:
0
m_InitializeOnStartup
:
1
m_TestMode
:
0
m_IosGameId
:
m_AndroidGameId
:
m_GameIds
:
{}
m_GameId
:
PerformanceReportingSettings
:
m_Enabled
:
0
Start sample/ProjectSettings/VFXManager.asset
0 → 100644
View file @
8299a897
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!937362698
&1
VFXManager
:
m_ObjectHideFlags
:
0
m_IndirectShader
:
{
fileID
:
0
}
m_CopyBufferShader
:
{
fileID
:
0
}
m_SortShader
:
{
fileID
:
0
}
m_RenderPipeSettingsPath
:
m_FixedTimeStep
:
0.016666668
m_MaxDeltaTime
:
0.05
Start sample/ProjectSettings/XRSettings.asset
0 → 100644
View file @
8299a897
{
"m_SettingKeys": [
"VR Device Disabled",
"VR Device User Alert"
],
"m_SettingValues": [
"False",
"False"
]
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment