서원석

3차면담확인서+코드진행

Showing 62 changed files with 140 additions and 66 deletions
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -9,7 +9,7 @@ GameObject:
serializedVersion: 6
m_Component:
- component: {fileID: 7968454459159073808}
m_Layer: 0
m_Layer: 8
m_Name: Bird_RightWing_Pivot
m_TagString: Untagged
m_Icon: {fileID: 0}
......@@ -40,7 +40,7 @@ GameObject:
serializedVersion: 6
m_Component:
- component: {fileID: 7968454459159073810}
m_Layer: 0
m_Layer: 8
m_Name: Bird_RightWing_Tip
m_TagString: Untagged
m_Icon: {fileID: 0}
......@@ -70,7 +70,7 @@ GameObject:
serializedVersion: 6
m_Component:
- component: {fileID: 7968454459159073812}
m_Layer: 0
m_Layer: 8
m_Name: Bird_Root
m_TagString: Untagged
m_Icon: {fileID: 0}
......@@ -102,7 +102,7 @@ GameObject:
m_Component:
- component: {fileID: 7968454459159073814}
- component: {fileID: 7968454459172504888}
m_Layer: 0
m_Layer: 8
m_Name: BirdRetop:polySurface1
m_TagString: Untagged
m_Icon: {fileID: 0}
......@@ -190,7 +190,7 @@ GameObject:
- component: {fileID: 7968454459168340984}
- component: {fileID: 7968454459967997015}
- component: {fileID: 7968454459967997014}
m_Layer: 0
m_Layer: 8
m_Name: Bird_Asset (1)
m_TagString: Untagged
m_Icon: {fileID: 0}
......@@ -266,7 +266,7 @@ GameObject:
serializedVersion: 6
m_Component:
- component: {fileID: 7968454459159073818}
m_Layer: 0
m_Layer: 8
m_Name: Bird_Body
m_TagString: Untagged
m_Icon: {fileID: 0}
......@@ -298,7 +298,7 @@ GameObject:
serializedVersion: 6
m_Component:
- component: {fileID: 7968454459159073820}
m_Layer: 0
m_Layer: 8
m_Name: Bird_LeftWing_Pivot
m_TagString: Untagged
m_Icon: {fileID: 0}
......@@ -329,7 +329,7 @@ GameObject:
serializedVersion: 6
m_Component:
- component: {fileID: 7968454459159073822}
m_Layer: 0
m_Layer: 8
m_Name: Bird_LeftWing_Tip
m_TagString: Untagged
m_Icon: {fileID: 0}
......
This diff could not be displayed because it is too large.
fileFormatVersion: 2
guid: f5554435a61f247a8b071dfcc6599327
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
This diff could not be displayed because it is too large.
fileFormatVersion: 2
guid: a9a99613656194a809e3228115ef4f64
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
......@@ -15,12 +15,18 @@ public class RaycastController : MonoBehaviour
private string objName = "";
AudioSource audio;
public AudioClip[] clips;
void Awake() {
if (instance == null) {
instance = this;
}
}
public void playSound(int sound) {
audio.clip = clips[sound];
audio.Play();
}
// Start is called before the first frame update
void Start()
{
......@@ -32,6 +38,48 @@ public class RaycastController : MonoBehaviour
{
}
public void Fire() {
if(nextShot) {
StartCoroutine(takeShot());
nextShot = false;
}
}
private IEnumerator takeShot() {
Ray ray = Camera.main.ViewportPointToRay(new Vector3(0.5f, 0.5f, 0));
RaycastHit hit;
int layer_mask = LayerMask.GetMask("birdLayer");
if(Physics.Raycast(ray, out hit, maxDistanceRay, layer_mask)) {
//debug
objName = hit.collider.gameObject.name;
birdName.text = objName;
Vector3 birdPosition = hit.collider.gameObject.transform.position;
if(objName == "Bird_Asset(Clone)") {
GameObject Boom = Instantiate(Resources.Load("boom", typeof(GameObject))) as GameObject;
Boom.transform.position = birdPosition;
Destroy(hit.collider.gameObject);
StartCoroutine(spawnNewBird());
StartCoroutine(clearBoom());
}
}
GameObject gunFlash = Instantiate(Resources.Load("gunFlashSmoke", typeof(GameObject))) as GameObject;
gunFlash.transform.position = gunFlashTarget.position;
yield return new WaitForSeconds(fireRate);
nextShot = true;
}
private IEnumerator clearBoom() {
yield return new WaitForSeconds(1.5f);
GameObject[] smokeGroup = GameObject.FindGameObjectsWithTag("Boom");
foreach (GameObject smoke in smokeGroup) {
Destroy(smoke.gameObject);
}
}
private IEnumerator spawnNewBird() {
yield return new WaitForSeconds (3f);
//Spawn new bird
......
......@@ -21,7 +21,7 @@ MonoBehaviour:
m_ShowMode: 4
m_Title:
m_RootView: {fileID: 6}
m_MinSize: {x: 875, y: 392}
m_MinSize: {x: 875, y: 542}
m_MaxSize: {x: 10000, y: 10000}
m_Maximized: 0
--- !u!114 &2
......@@ -45,10 +45,10 @@ MonoBehaviour:
y: 30
width: 1237
height: 705
m_MinSize: {x: 677, y: 342}
m_MaxSize: {x: 12002, y: 8042}
m_MinSize: {x: 679, y: 492}
m_MaxSize: {x: 14002, y: 14042}
vertical: 0
controlID: 17
controlID: 108
--- !u!114 &3
MonoBehaviour:
m_ObjectHideFlags: 52
......@@ -68,8 +68,8 @@ MonoBehaviour:
y: 0
width: 415
height: 705
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 15}
m_Panes:
- {fileID: 15}
......@@ -94,8 +94,8 @@ MonoBehaviour:
y: 0
width: 251
height: 427
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 16}
m_Panes:
- {fileID: 16}
......@@ -111,7 +111,7 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: ConsoleWindow
m_Name: ProjectBrowser
m_EditorClassIdentifier:
m_Children: []
m_Position:
......@@ -120,14 +120,14 @@ MonoBehaviour:
y: 427
width: 822
height: 278
m_MinSize: {x: 101, y: 121}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 19}
m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 14}
m_Panes:
- {fileID: 14}
- {fileID: 19}
m_Selected: 1
m_LastSelected: 0
m_Selected: 0
m_LastSelected: 1
--- !u!114 &6
MonoBehaviour:
m_ObjectHideFlags: 52
......@@ -216,10 +216,10 @@ MonoBehaviour:
y: 0
width: 822
height: 705
m_MinSize: {x: 402, y: 342}
m_MaxSize: {x: 8002, y: 8042}
m_MinSize: {x: 403, y: 492}
m_MaxSize: {x: 10001, y: 14042}
vertical: 1
controlID: 18
controlID: 109
--- !u!114 &10
MonoBehaviour:
m_ObjectHideFlags: 52
......@@ -241,10 +241,10 @@ MonoBehaviour:
y: 0
width: 822
height: 427
m_MinSize: {x: 402, y: 221}
m_MaxSize: {x: 8002, y: 4021}
m_MinSize: {x: 403, y: 221}
m_MaxSize: {x: 8003, y: 4021}
vertical: 0
controlID: 19
controlID: 110
--- !u!114 &11
MonoBehaviour:
m_ObjectHideFlags: 52
......@@ -376,10 +376,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 280
y: 75
width: 722
height: 405
x: 260
y: 30
width: 589
height: 433
m_ViewDataDictionary: {fileID: 0}
--- !u!114 &14
MonoBehaviour:
......@@ -420,20 +420,20 @@ MonoBehaviour:
m_SkipHidden: 0
m_SearchArea: 1
m_Folders:
- Assets/Scripts
- Assets/Resources
m_ViewMode: 1
m_StartGridSize: 64
m_LastFolders:
- Assets/Scripts
- Assets/Resources
m_LastFoldersGridSize: -1
m_LastProjectPath: /Users/sws/Duck Hunter AR
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 323}
m_SelectedIDs: 244b0000
m_LastClickedID: 19236
m_ExpandedIDs: 00000000ec3a0000
scrollPos: {x: 0, y: 79}
m_SelectedIDs: a83a0000
m_LastClickedID: 15016
m_ExpandedIDs: 00000000883a000000ca9a3b
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
......@@ -461,7 +461,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 00000000ec3a0000
m_ExpandedIDs: 00000000883a0000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
......@@ -488,7 +488,7 @@ MonoBehaviour:
m_ListAreaState:
m_SelectedInstanceIDs:
m_LastClickedInstanceID: 0
m_HadKeyboardFocusLastEvent: 1
m_HadKeyboardFocusLastEvent: 0
m_ExpandedInstanceIDs: c6230000dc3f000000000000
m_RenameOverlay:
m_UserAcceptedRename: 0
......@@ -505,7 +505,7 @@ MonoBehaviour:
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 0}
m_ClientGUIView: {fileID: 5}
m_CreateAssetUtility:
m_EndAction: {fileID: 0}
m_InstanceID: 0
......@@ -584,9 +584,9 @@ MonoBehaviour:
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: a4390000
m_LastClickedID: 14756
m_ExpandedIDs: 60fbffffee390000
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 60fbffff
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
......@@ -646,9 +646,9 @@ MonoBehaviour:
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: -0.7786596, y: -0.67948675, z: -0.58338237}
m_Target: {x: -0.3424908, y: 6.095478, z: -0.054552317}
speed: 2
m_Value: {x: -0.7786596, y: -0.67948675, z: -0.58338237}
m_Value: {x: -0.3424908, y: 6.095478, z: -0.054552317}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
......@@ -694,13 +694,13 @@ MonoBehaviour:
m_GridAxis: 1
m_gridOpacity: 0.5
m_Rotation:
m_Target: {x: -0.15572436, y: 0.8441295, z: -0.37121826, w: -0.3541085}
m_Target: {x: -0.25960436, y: 0.5711201, z: -0.19677876, w: -0.7534632}
speed: 2
m_Value: {x: -0.15572433, y: 0.8441293, z: -0.37121817, w: -0.35410842}
m_Value: {x: -0.25960422, y: 0.5711197, z: -0.19677864, w: -0.75346273}
m_Size:
m_Target: 2.777765
m_Target: 3.6011362
speed: 2
m_Value: 2.777765
m_Value: 3.6011362
m_Ortho:
m_Target: 0
speed: 2
......@@ -718,7 +718,7 @@ MonoBehaviour:
m_FarClip: 10000
m_DynamicClip: 1
m_OcclusionCulling: 0
m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
m_LastSceneViewRotation: {x: -0.25960436, y: 0.5711201, z: -0.19677876, w: -0.7534632}
m_LastSceneViewOrtho: 0
m_ReplacementShader: {fileID: 0}
m_ReplacementString:
......@@ -838,8 +838,8 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 43
y: 502
width: 821
height: 257
x: 0
y: 484
width: 850
height: 275
m_ViewDataDictionary: {fileID: 0}
......
{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0}
\ No newline at end of file
{"m_ExpandedPrefabGameObjectFileIDs":[6416379245625954454,6416379245625954458,6416379245625954452,6416379245625954450,6416379245625954462],"m_ExpandedSceneGameObjectInstanceIDs":[],"m_ScrollY":0.0,"m_LastClickedFileID":6416379245625954454,"m_LastClickedInstanceID":0}
\ No newline at end of file
{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0}
\ No newline at end of file
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":false,"pivot":{"x":-0.05192927271127701,"y":1.0240000486373902,"z":-1.2667886018753052},"rotation":{"x":-0.2596043646335602,"y":0.5711200833320618,"z":-0.19677875936031342,"w":-0.7534632086753845},"size":0.39765363931655886,"orthographic":false}
\ No newline at end of file
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":true,"pivot":{"x":-0.13249647617340089,"y":1.054817795753479,"z":-1.2810721397399903},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":0.4302772879600525,"orthographic":true}
\ No newline at end of file
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":false,"pivot":{"x":-2.6501102447509767,"y":3.503981590270996,"z":0.6967406272888184},"rotation":{"x":-0.2596043646335602,"y":0.5711200833320618,"z":-0.19677875936031342,"w":-0.7534632086753845},"size":4.520999431610107,"orthographic":false}
\ No newline at end of file
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":false,"pivot":{"x":-0.7786595821380615,"y":-0.6794867515563965,"z":-0.5833823680877686},"rotation":{"x":-0.15572436153888703,"y":0.8441295027732849,"z":-0.3712182641029358,"w":-0.3541085124015808},"size":2.7777650356292726,"orthographic":false}
\ No newline at end of file
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":false,"pivot":{"x":-0.3424907922744751,"y":6.095478057861328,"z":-0.054552316665649417},"rotation":{"x":-0.2596043646335602,"y":0.5711200833320618,"z":-0.19677875936031342,"w":-0.7534632086753845},"size":3.6011362075805666,"orthographic":false}
\ No newline at end of file
......
Base path: '/Applications/Unity/Hub/Editor/2019.3.14f1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.3.14f1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: compileSnippet
api=14 type=0 insize=1086 outsize=1546 kw=VUFORIA_RGB pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=0 insize=288996 outsize=2933 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=1 insize=41108 outsize=5554 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=1 insize=1402 outsize=1028 kw=UNITY_PASS_FORWARDBASE PROCEDURAL_INSTANCING_ON _ALPHABLEND_ON pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=1 insize=934 outsize=730 kw=PROCEDURAL_INSTANCING_ON pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
......
Base path: '/Applications/Unity/Hub/Editor/2019.3.14f1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.3.14f1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: compileSnippet
api=14 type=1 insize=1086 outsize=880 kw=VUFORIA_RGB pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=1 insize=288996 outsize=4084 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=0 insize=41108 outsize=2933 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=0 insize=1402 outsize=5483 kw=UNITY_PASS_FORWARDBASE PROCEDURAL_INSTANCING_ON _ALPHABLEND_ON pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=0 insize=1152 outsize=3288 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Quitting shader compiler process
......
Base path: '/Applications/Unity/Hub/Editor/2019.3.14f1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.3.14f1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: compileSnippet
api=14 type=0 insize=7271 outsize=5974 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=0 insize=934 outsize=4312 kw=PROCEDURAL_INSTANCING_ON pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=1 insize=316957 outsize=7762 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=1 insize=1602 outsize=8056 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL SHADOWS_SCREEN LIGHTPROBE_SH pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=1 insize=1152 outsize=1067 kw=UNITY_PASS_SHADOWCASTER SHADOWS_DEPTH _ALPHABLEND_ON pd=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Quitting shader compiler process
......
......@@ -5,6 +5,8 @@ TagManager:
serializedVersion: 2
tags:
- target
- GunSmoke
- Boom
layers:
- Default
- TransparentFX
......@@ -14,7 +16,7 @@ TagManager:
- UI
-
-
-
- birdLayer
-
-
-
......