diff --git a/cameraFollow.cs.meta b/cameraFollow.cs.meta new file mode 100644 index 0000000..d6bf932 --- /dev/null +++ b/cameraFollow.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ca1e948524392fb4b9bd108f4f86b5b7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/updown.cs.meta b/updown.cs.meta new file mode 100644 index 0000000..44898b1 --- /dev/null +++ b/updown.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d53a2d19e01408c4785c97b4f7eb31a1 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git "a/\352\260\234\353\257\270\353\213\244\353\246\254\354\233\200\354\247\201\354\236\204\354\230\201\354\203\201pivot\352\271\200\354\227\260\354\236\254(\354\206\214\355\224\204\355\212\270\354\233\250.mp4" "b/\352\260\234\353\257\270\353\213\244\353\246\254\354\233\200\354\247\201\354\236\204\354\230\201\354\203\201pivot\352\271\200\354\227\260\354\236\254(\354\206\214\355\224\204\355\212\270\354\233\250.mp4" new file mode 100644 index 0000000..d961835 Binary files /dev/null and "b/\352\260\234\353\257\270\353\213\244\353\246\254\354\233\200\354\247\201\354\236\204\354\230\201\354\203\201pivot\352\271\200\354\227\260\354\236\254(\354\206\214\355\224\204\355\212\270\354\233\250.mp4" differ diff --git "a/\354\230\244\352\260\200_k.cs.meta" "b/\354\230\244\352\260\200_k.cs.meta" new file mode 100644 index 0000000..f275e0e --- /dev/null +++ "b/\354\230\244\352\260\200_k.cs.meta" @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 220091fe660b1244ca81dbe7629686b7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git "a/\354\230\244\352\260\200_k_pivot.cs" "b/\354\230\244\352\260\200_k_pivot.cs" new file mode 100644 index 0000000..38d4424 --- /dev/null +++ "b/\354\230\244\352\260\200_k_pivot.cs" @@ -0,0 +1,28 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class 오가_k_pivot : MonoBehaviour +{ + public int speed; + // public int count = 0; //다리 개수 카운트 + + + void Start() + { + speed = 200; + } + void Update() + { + if (Input.GetKeyDown(KeyCode.K)) //누르는 동안 hold + { + transform.localRotation = Quaternion.Euler(-110.6f, 0, 0); + } + if (Input.GetKeyUp(KeyCode.K)) //손 떼면 복구 + { + transform.localRotation = Quaternion.Euler(-89.98f, 0, 0); + + } + } + +} diff --git "a/\354\230\244\353\222\244_l.cs.meta" "b/\354\230\244\353\222\244_l.cs.meta" new file mode 100644 index 0000000..a75465d --- /dev/null +++ "b/\354\230\244\353\222\244_l.cs.meta" @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 466ca8f3a8d56664c8ecd53c8598a237 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git "a/\354\230\244\353\222\244_l_pivot.cs" "b/\354\230\244\353\222\244_l_pivot.cs" new file mode 100644 index 0000000..b8e3fbb --- /dev/null +++ "b/\354\230\244\353\222\244_l_pivot.cs" @@ -0,0 +1,25 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class 오뒤_l_pivot : MonoBehaviour +{ + void Start() + { + } + void Update() + { + if (Input.GetKeyDown(KeyCode.L)) //누르는 동안 hold + { + transform.localRotation = Quaternion.Euler(-103.3f, 0, 0); + + } + if (Input.GetKeyUp(KeyCode.L)) //손 떼면 복구 + { + + transform.localRotation = Quaternion.Euler(-89.98f, 0, 0); + + } + } + +} \ No newline at end of file diff --git "a/\354\230\244\354\225\236_j.cs.meta" "b/\354\230\244\354\225\236_j.cs.meta" new file mode 100644 index 0000000..ff87209 --- /dev/null +++ "b/\354\230\244\354\225\236_j.cs.meta" @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6b0f9cce60d21b34f8ec6dc0496af6e8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git "a/\354\230\244\354\225\236_j_pivot.cs" "b/\354\230\244\354\225\236_j_pivot.cs" new file mode 100644 index 0000000..424bf7e --- /dev/null +++ "b/\354\230\244\354\225\236_j_pivot.cs" @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class 오앞_j_pivot : MonoBehaviour +{ + + void Start() + { + } + void Update() + { + if (Input.GetKeyDown(KeyCode.J)) //누르는 동안 hold + { + transform.localRotation = Quaternion.Euler(-120.1f, 0, 0); + } + if (Input.GetKeyUp(KeyCode.J)) //손 떼면 복구 + { + transform.localRotation = Quaternion.Euler(-89.98f, 0, 0); + + } + } +} diff --git "a/\354\231\274\352\260\200_s.cs.meta" "b/\354\231\274\352\260\200_s.cs.meta" new file mode 100644 index 0000000..ac67c95 --- /dev/null +++ "b/\354\231\274\352\260\200_s.cs.meta" @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2953be0ff88176446bc2cdd490b10c22 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git "a/\354\231\274\352\260\200_s_pivot.cs" "b/\354\231\274\352\260\200_s_pivot.cs" new file mode 100644 index 0000000..176ed81 --- /dev/null +++ "b/\354\231\274\352\260\200_s_pivot.cs" @@ -0,0 +1,25 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class 왼가_s_pivot : MonoBehaviour +{ + + void Start() + { + } + void Update() + { + if (Input.GetKeyDown(KeyCode.S)) //누르는 동안 hold + { + transform.localRotation = Quaternion.Euler(-69f, 0, -180); + } + if (Input.GetKeyUp(KeyCode.S)) //손 떼면 복구 + { + transform.localRotation = Quaternion.Euler(-90.00001f, 0, -180); + + + + } + } +} diff --git "a/\354\231\274\353\222\244_a.cs.meta" "b/\354\231\274\353\222\244_a.cs.meta" new file mode 100644 index 0000000..4607297 --- /dev/null +++ "b/\354\231\274\353\222\244_a.cs.meta" @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b2b58abc6a49baf4ea5ae4d68e14d1ac +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git "a/\354\231\274\353\222\244_a_pivot.cs" "b/\354\231\274\353\222\244_a_pivot.cs" new file mode 100644 index 0000000..64daad4 --- /dev/null +++ "b/\354\231\274\353\222\244_a_pivot.cs" @@ -0,0 +1,25 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class 왼뒤_a_pivot : MonoBehaviour +{ + void Start() + { + } + void Update() + { + if (Input.GetKeyDown(KeyCode.A)) //누르는 동안 hold + { + transform.localRotation = Quaternion.Euler(-76.7f, 0, -180); + } + if (Input.GetKeyUp(KeyCode.A)) //손 떼면 복구 + { + transform.localRotation = Quaternion.Euler(-90.00001f, 0, -180); + + + + } + } + +} diff --git "a/\354\231\274\354\225\236_d.cs.meta" "b/\354\231\274\354\225\236_d.cs.meta" new file mode 100644 index 0000000..dbf7eca --- /dev/null +++ "b/\354\231\274\354\225\236_d.cs.meta" @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 46005c25d2c494c46bb636c5ef70fffa +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git "a/\354\231\274\354\225\236_d_pivot.cs" "b/\354\231\274\354\225\236_d_pivot.cs" new file mode 100644 index 0000000..36a352a --- /dev/null +++ "b/\354\231\274\354\225\236_d_pivot.cs" @@ -0,0 +1,24 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class 왼앞_d_pivot : MonoBehaviour +{ + void Start() + { + } + void Update() + { + if (Input.GetKeyDown(KeyCode.D)) //누르는 동안 hold + { + transform.localRotation = Quaternion.Euler(-60.3f, 0, -180); + } + if (Input.GetKeyUp(KeyCode.D)) //손 떼면 복구 + { + transform.localRotation = Quaternion.Euler(-90.00001f, 0, -180); + + + + } + } +}