diff --git a/Assets/Chunk.prefab.meta b/Assets/Chunk.prefab.meta new file mode 100644 index 0000000..5377ce3 --- /dev/null +++ b/Assets/Chunk.prefab.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 0823cae39ac1f1147b3653dc7db245a2 +NativeFormatImporter: + userData: diff --git a/Assets/ChunkMaterial.mat.meta b/Assets/ChunkMaterial.mat.meta new file mode 100644 index 0000000..d41c3eb --- /dev/null +++ b/Assets/ChunkMaterial.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: e1fa29a895b766e4087bebbbbe4e7647 +NativeFormatImporter: + userData: diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta new file mode 100644 index 0000000..99e5c7d --- /dev/null +++ b/Assets/Scripts.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 1090bcb745ab46f48bf2f29b212db3be +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Scripts/Chunk.cs.meta b/Assets/Scripts/Chunk.cs.meta new file mode 100644 index 0000000..2d6fcd3 --- /dev/null +++ b/Assets/Scripts/Chunk.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c989ae7dd4142dc4d8ba67d5b4166a30 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Scripts/Crosshair.cs.meta b/Assets/Scripts/Crosshair.cs.meta new file mode 100644 index 0000000..893253a --- /dev/null +++ b/Assets/Scripts/Crosshair.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73edf4d339fc7bc43b77f5df5abc6d89 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Scripts/Noise.cs.meta b/Assets/Scripts/Noise.cs.meta new file mode 100644 index 0000000..61b6d23 --- /dev/null +++ b/Assets/Scripts/Noise.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7281089874bee8f4d9e8142b6e90032e +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Scripts/PlayerIO.cs b/Assets/Scripts/PlayerIO.cs index 0f6041d..3e7318e 100644 --- a/Assets/Scripts/PlayerIO.cs +++ b/Assets/Scripts/PlayerIO.cs @@ -28,10 +28,9 @@ void Update () { if (Input.GetMouseButtonDown(0)){ - Vector3 p = hit.point; - p -= hit.normal / 4; - - chunk.SetBrick(0, p); + Vector3 p = hit.point; + p -= hit.normal / 4; + chunk.SetBrick(0, p); } @@ -40,6 +39,7 @@ void Update () { Vector3 p = hit.point; if (selectedInventory != 0){ p += hit.normal / 4; + if (p != new Vector3 (GameObject.FindWithTag("MinecraftPlayer").transform.position.x,GameObject.FindWithTag("MinecraftPlayer").transform.position.y,GameObject.FindWithTag("MinecraftPlayer").transform.position.z)) chunk.SetBrick(selectedInventory,p); } @@ -57,11 +57,13 @@ void Update () { if (Input.GetKeyDown (KeyCode.F5)) { if (resetCamera == false) { transform.localPosition -= Vector3.forward * 2; + GameObject.FindWithTag("MinecraftPlayer").layer = 1; resetCamera = true; } else{ transform.position = transform.parent.root.transform.localPosition + new Vector3(0f, 0.7f, 0.06f); transform.rotation = transform.parent.root.transform.rotation; + GameObject.FindWithTag("MinecraftPlayer").layer = 8; resetCamera = false; } } diff --git a/Assets/Scripts/PlayerIO.cs.meta b/Assets/Scripts/PlayerIO.cs.meta new file mode 100644 index 0000000..da466d4 --- /dev/null +++ b/Assets/Scripts/PlayerIO.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9cffcde21a77c864389d63351fb4e728 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Scripts/PlayerWalkScript.cs.meta b/Assets/Scripts/PlayerWalkScript.cs.meta new file mode 100644 index 0000000..07e4843 --- /dev/null +++ b/Assets/Scripts/PlayerWalkScript.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ddbdf9dae358c34ebef495737b268aa +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Scripts/PlayerWalkScriptLeft.cs.meta b/Assets/Scripts/PlayerWalkScriptLeft.cs.meta new file mode 100644 index 0000000..a308622 --- /dev/null +++ b/Assets/Scripts/PlayerWalkScriptLeft.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2eddaeaf42d4cbe4cb5e368043bcab74 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Scripts/World.cs.meta b/Assets/Scripts/World.cs.meta new file mode 100644 index 0000000..19cbbd3 --- /dev/null +++ b/Assets/Scripts/World.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b19aff51390c91040b9cf58efcd70390 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Standard Assets.meta b/Assets/Standard Assets.meta new file mode 100644 index 0000000..99fe5ae --- /dev/null +++ b/Assets/Standard Assets.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 8ce8324a93c67cf4db6e30432f3e24ca +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers.meta b/Assets/Standard Assets/Character Controllers.meta new file mode 100644 index 0000000..8f37525 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 54216e9ed42974e30967824b7f0b2806 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/3rd Person Controller.prefab.meta b/Assets/Standard Assets/Character Controllers/3rd Person Controller.prefab.meta new file mode 100644 index 0000000..0b2fb6a --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/3rd Person Controller.prefab.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 2314ce3a3eecf4816bad3c9eca4de2e1 +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/First Person Controller.prefab.meta b/Assets/Standard Assets/Character Controllers/First Person Controller.prefab.meta new file mode 100644 index 0000000..8571a4d --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/First Person Controller.prefab.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 9d4133d5d30b644bd87802a347eaccbe +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Materials.meta b/Assets/Standard Assets/Character Controllers/Materials.meta new file mode 100644 index 0000000..29eade7 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Materials.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: f117771501994564982fa44cbd1077a6 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Materials/MinecraftPlayer-Player__char_png.mat.meta b/Assets/Standard Assets/Character Controllers/Materials/MinecraftPlayer-Player__char_png.mat.meta new file mode 100644 index 0000000..8740518 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Materials/MinecraftPlayer-Player__char_png.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: b5b3956acb79c4c419da73d451024c28 +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Materials/MinecraftPlayer-Player__char_png_0.mat.meta b/Assets/Standard Assets/Character Controllers/Materials/MinecraftPlayer-Player__char_png_0.mat.meta new file mode 100644 index 0000000..913b40a --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Materials/MinecraftPlayer-Player__char_png_0.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: d08f683727b16a2448be5007d8711e92 +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Materials/Player.mat.meta b/Assets/Standard Assets/Character Controllers/Materials/Player.mat.meta new file mode 100644 index 0000000..5a662c5 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Materials/Player.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: dfcea0ba0cf7ab8468ea385fce550706 +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Materials/Player__char_png_0.mat.meta b/Assets/Standard Assets/Character Controllers/Materials/Player__char_png_0.mat.meta new file mode 100644 index 0000000..1424325 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Materials/Player__char_png_0.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: e401e501282cf0f4498f1e9bb2765ea5 +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Materials/char.mat.meta b/Assets/Standard Assets/Character Controllers/Materials/char.mat.meta new file mode 100644 index 0000000..38372b3 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Materials/char.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: baa909ed6ff07724eaf8b9d078fd139a +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Materials/defaultMat.mat.meta b/Assets/Standard Assets/Character Controllers/Materials/defaultMat.mat.meta new file mode 100644 index 0000000..c832a73 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Materials/defaultMat.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 9f67e5bce8e55e949a088765ec12d01a +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/MinecraftPlayer.blend.meta b/Assets/Standard Assets/Character Controllers/MinecraftPlayer.blend.meta new file mode 100644 index 0000000..f2519d0 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/MinecraftPlayer.blend.meta @@ -0,0 +1,57 @@ +fileFormatVersion: 2 +guid: ec7f2c9019cef3f409a2e0c214a49214 +ModelImporter: + serializedVersion: 15 + fileIDToRecycleName: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + animationCompression: 1 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: [] + skeleton: [] + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 2 + userData: diff --git a/Assets/Standard Assets/Character Controllers/MinecraftPlayer.fbx.meta b/Assets/Standard Assets/Character Controllers/MinecraftPlayer.fbx.meta new file mode 100644 index 0000000..e952061 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/MinecraftPlayer.fbx.meta @@ -0,0 +1,267 @@ +fileFormatVersion: 2 +guid: 4783aadae216f2140afd1967eda81d71 +ModelImporter: + serializedVersion: 15 + fileIDToRecycleName: + 100000: body + 100002: Camera + 100004: larm_L + 100006: larm_R + 100008: lleg_L + 100010: lleg_R + 100012: //RootNode + 100014: Player_0 + 100016: PlayerArmature + 100018: root_0 + 100020: Sun + 100022: top + 100024: uarm_L + 100026: uarm_R + 100028: uleg_L + 100030: uleg_R + 100032: Player + 100034: root + 400000: body + 400002: Camera + 400004: larm_L + 400006: larm_R + 400008: lleg_L + 400010: lleg_R + 400012: //RootNode + 400014: Player_0 + 400016: PlayerArmature + 400018: root_0 + 400020: Sun + 400022: top + 400024: uarm_L + 400026: uarm_R + 400028: uleg_L + 400030: uleg_R + 400032: Player + 400034: root + 4300000: Player_0 + 4300002: Player + 7400000: Default Take + 9500000: //RootNode + 13700000: Player_0 + 13700002: Player + materials: + importMaterials: 1 + materialName: 2 + materialSearch: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + animationCompression: 3 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: root_0 + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: uleg_L + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: uleg_R + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: lleg_L + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: lleg_R + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: body + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: top + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: uarm_L + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: uarm_R + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: larm_L + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: larm_R + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: MinecraftPlayer(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Camera + position: {x: 0, y: 1.5, z: 6} + rotation: {x: -.00617037341, y: -.707079828, z: .00617037341, w: .707079887} + scale: {x: .99999994, y: .99999994, z: 1} + transformModified: 1 + - name: Player_0 + position: {x: 0, y: 0, z: 0} + rotation: {x: -.707106888, y: 0, z: -0, w: .707106769} + scale: {x: .5, y: .5, z: .5} + transformModified: 1 + - name: PlayerArmature + position: {x: 0, y: 1.06277966, z: 0} + rotation: {x: -.707106888, y: 0, z: -0, w: .707106769} + scale: {x: .5, y: .5, z: .5} + transformModified: 1 + - name: root_0 + position: {x: -0, y: 0, z: -.423761725} + rotation: {x: .5, y: .5, z: -.5, w: .5} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: body + position: {x: -.341935515, y: 2.58154138e-08, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: top + position: {x: -1.95626521, y: 1.47693925e-07, z: -2.99999969e-15} + rotation: {x: 1, y: -7.54979013e-08, z: 4.37113883e-08, w: -7.55001537e-08} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: uarm_L + position: {x: -1.65516734, y: -.905686736, z: 1.31614026e-08} + rotation: {x: 1.06071717e-07, y: 2.52986823e-08, z: .798305094, w: .602253318} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: larm_L + position: {x: -.654940486, y: 4.54074183e-08, z: 1.80000007e-14} + rotation: {x: -1.28392927e-07, y: 3.77522582e-08, z: .0762128532, w: .997091591} + scale: {x: .99999994, y: .99999994, z: 1} + transformModified: 1 + - name: uarm_R + position: {x: -1.6551671, y: .905686975, z: 1.31614026e-08} + rotation: {x: 4.17391206e-08, y: 7.50616422e-08, z: .798304975, w: -.602253377} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: larm_R + position: {x: -.654940486, y: 5.50251009e-08, z: 0} + rotation: {x: 1.02639071e-07, y: 2.29707009e-08, z: -.0762128606, w: .997091591} + scale: {x: .99999994, y: .99999994, z: 1} + transformModified: 1 + - name: uleg_L + position: {x: -.21524182, y: -.338408351, z: 5.53795898e-09} + rotation: {x: 1.51898514e-15, y: 4.37113883e-08, z: 1, w: -4.37091323e-08} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: lleg_L + position: {x: -.85425961, y: 5.04353004e-08, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: uleg_R + position: {x: -.21524176, y: .338408411, z: 5.53795898e-09} + rotation: {x: -5.34015903e-15, y: -4.37113883e-08, z: 1, w: 4.37091323e-08} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: lleg_R + position: {x: -.85425961, y: 5.04353004e-08, z: -2.99999969e-15} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Sun + position: {x: -1.51981843, y: 5.3833971, z: 6.11083698} + rotation: {x: .464420855, y: .0796379745, z: .155300483, w: .868247032} + scale: {x: 1, y: 1, z: .999999821} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 3 + userData: diff --git a/Assets/Standard Assets/Character Controllers/MinecraftPlayer.mtl.meta b/Assets/Standard Assets/Character Controllers/MinecraftPlayer.mtl.meta new file mode 100644 index 0000000..e711548 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/MinecraftPlayer.mtl.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: c12922db8df3a95418019291d35e7168 +DefaultImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Skin_Default.mat.meta b/Assets/Standard Assets/Character Controllers/Skin_Default.mat.meta new file mode 100644 index 0000000..9061ae0 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Skin_Default.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: a05fa379be031cb49a7e7bd56e473540 +NativeFormatImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Sources.meta b/Assets/Standard Assets/Character Controllers/Sources.meta new file mode 100644 index 0000000..9adeff3 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Sources.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 7e0b0a994d8934541a387e092630b5db +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Sources/Scripts.meta b/Assets/Standard Assets/Character Controllers/Sources/Scripts.meta new file mode 100644 index 0000000..5fe49ae --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Sources/Scripts.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: f781c091d1c8647c380d5230adfaee54 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Standard Assets/Character Controllers/Sources/Scripts/CharacterMotor.js.meta b/Assets/Standard Assets/Character Controllers/Sources/Scripts/CharacterMotor.js.meta new file mode 100644 index 0000000..3edc737 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Sources/Scripts/CharacterMotor.js.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ab79d7f243824f5d9826bd83522c8df +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Standard Assets/Character Controllers/Sources/Scripts/FPSInputController.js.meta b/Assets/Standard Assets/Character Controllers/Sources/Scripts/FPSInputController.js.meta new file mode 100644 index 0000000..64cb130 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Sources/Scripts/FPSInputController.js.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60bca8f58a0b8478e946e6e86658cb29 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs b/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs index 6374449..7b11a4d 100644 --- a/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs +++ b/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs @@ -25,8 +25,8 @@ public enum RotationAxes { MouseXAndY = 0, MouseX = 1, MouseY = 2 } public float minimumX = -360F; public float maximumX = 360F; - public float minimumY = -60F; - public float maximumY = 60F; + public float minimumY = -90F; + public float maximumY = 90F; float rotationY = 0F; diff --git a/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs.meta b/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs.meta new file mode 100644 index 0000000..9ab645e --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68ec2fe99d1108b9d0006a298d76c639 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Standard Assets/Character Controllers/Sources/Scripts/PlatformInputController.js.meta b/Assets/Standard Assets/Character Controllers/Sources/Scripts/PlatformInputController.js.meta new file mode 100644 index 0000000..b128e0f --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Sources/Scripts/PlatformInputController.js.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: da93ddd6928094e24bb1f3f665f143d3 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonCamera.js.meta b/Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonCamera.js.meta new file mode 100644 index 0000000..e458523 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonCamera.js.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0b167d00b3108411a8a963cba5ddde1b +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js.meta b/Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js.meta new file mode 100644 index 0000000..c09500e --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1d5ac211a643e447ca78c2d794a16381 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Assets/Standard Assets/Character Controllers/char.png.meta b/Assets/Standard Assets/Character Controllers/char.png.meta new file mode 100644 index 0000000..1f77300 --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/char.png.meta @@ -0,0 +1,45 @@ +fileFormatVersion: 2 +guid: 4f822a18df8013246a517342c843e83c +TextureImporter: + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Standard Assets/Character Controllers/char1.png.meta b/Assets/Standard Assets/Character Controllers/char1.png.meta new file mode 100644 index 0000000..160b1bf --- /dev/null +++ b/Assets/Standard Assets/Character Controllers/char1.png.meta @@ -0,0 +1,45 @@ +fileFormatVersion: 2 +guid: d36233802f2e3ca448ecd6f18a36c9d8 +TextureImporter: + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: 0 + aniso: 9 + mipBias: -1 + wrapMode: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Standard Assets/Skyboxes.meta b/Assets/Standard Assets/Skyboxes.meta new file mode 100644 index 0000000..f8a8da5 --- /dev/null +++ b/Assets/Standard Assets/Skyboxes.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 607426a9820414bfd8081fb22854dbd4 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Textures.meta b/Assets/Textures.meta new file mode 100644 index 0000000..e53a715 --- /dev/null +++ b/Assets/Textures.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 75a9f42993c7cb446b8bffb829d7adb4 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/Textures/checkerboard.png.meta b/Assets/Textures/checkerboard.png.meta new file mode 100644 index 0000000..8f47d9d --- /dev/null +++ b/Assets/Textures/checkerboard.png.meta @@ -0,0 +1,36 @@ +fileFormatVersion: 2 +guid: 78c863421fc0e6948b59e59996e6ca7d +TextureImporter: + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + userData: diff --git a/Assets/Textures/crosshairalpha.png.meta b/Assets/Textures/crosshairalpha.png.meta new file mode 100644 index 0000000..d218c0e --- /dev/null +++ b/Assets/Textures/crosshairalpha.png.meta @@ -0,0 +1,45 @@ +fileFormatVersion: 2 +guid: d379536bbe06cc646bd48c83110ea995 +TextureImporter: + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/Textures/tileTexture.png.meta b/Assets/Textures/tileTexture.png.meta new file mode 100644 index 0000000..ad40757 --- /dev/null +++ b/Assets/Textures/tileTexture.png.meta @@ -0,0 +1,36 @@ +fileFormatVersion: 2 +guid: 453ea2e1e226d2c4f83fe551570fbabf +TextureImporter: + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 512 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + userData: diff --git a/Assets/Textures/tileTextureBump.png.meta b/Assets/Textures/tileTextureBump.png.meta new file mode 100644 index 0000000..73a5508 --- /dev/null +++ b/Assets/Textures/tileTextureBump.png.meta @@ -0,0 +1,45 @@ +fileFormatVersion: 2 +guid: 640f8137cba04b94890b520575b3e766 +TextureImporter: + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 1 + externalNormalMap: 1 + heightScale: .25 + normalMapFilter: 1 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 512 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: 1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/garden.unity b/Assets/garden.unity index b87c40e..06ce161 100644 Binary files a/Assets/garden.unity and b/Assets/garden.unity differ diff --git a/Assets/garden.unity.meta b/Assets/garden.unity.meta new file mode 100644 index 0000000..cbce262 --- /dev/null +++ b/Assets/garden.unity.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: 61b884acb642d904382bce55cfeac61a +DefaultImporter: + userData: diff --git a/Assets/mineinunity.png.meta b/Assets/mineinunity.png.meta new file mode 100644 index 0000000..c23947e --- /dev/null +++ b/Assets/mineinunity.png.meta @@ -0,0 +1,45 @@ +fileFormatVersion: 2 +guid: 736d1d9b5c5a7a24a9b99f66657b204c +TextureImporter: + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Assets/mineinunitylogo.png.meta b/Assets/mineinunitylogo.png.meta new file mode 100644 index 0000000..e3ca77f --- /dev/null +++ b/Assets/mineinunitylogo.png.meta @@ -0,0 +1,45 @@ +fileFormatVersion: 2 +guid: 4f87cd5fddc81ba4d8143e6f882ab622 +TextureImporter: + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: diff --git a/Library/AssetImportState b/Library/AssetImportState index c7ae977..71caac0 100644 --- a/Library/AssetImportState +++ b/Library/AssetImportState @@ -1 +1 @@ -6;0;-1 \ No newline at end of file +25;0;-1 \ No newline at end of file diff --git a/Library/CurrentLayout.dwlt b/Library/CurrentLayout.dwlt index dfa4e69..a461bf7 100644 Binary files a/Library/CurrentLayout.dwlt and b/Library/CurrentLayout.dwlt differ diff --git a/Library/CurrentMaximizeLayout.dwlt b/Library/CurrentMaximizeLayout.dwlt index 0fcc6ce..dbda8e5 100644 Binary files a/Library/CurrentMaximizeLayout.dwlt and b/Library/CurrentMaximizeLayout.dwlt differ diff --git a/Library/EditorUserBuildSettings.asset b/Library/EditorUserBuildSettings.asset index c836d72..7e00073 100644 Binary files a/Library/EditorUserBuildSettings.asset and b/Library/EditorUserBuildSettings.asset differ diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 962ba92..7290b42 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/ProjectSettings.asset b/Library/ProjectSettings.asset index 0e2f8d1..650cdc2 100644 Binary files a/Library/ProjectSettings.asset and b/Library/ProjectSettings.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll b/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll index 2242d55..e48b070 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll and b/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll.mdb b/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll.mdb index 4b1b98c..a325bee 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll.mdb and b/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll.mdb differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index 61d16ac..75ec7f8 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb b/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb index e2fccd0..9df23f3 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb and b/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb differ diff --git a/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll b/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll index dc2588b..3fc220f 100644 Binary files a/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll and b/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll differ diff --git a/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll.mdb b/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll.mdb index 8be33fe..18868e2 100644 Binary files a/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll.mdb and b/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll.mdb differ diff --git a/Library/assetDatabase3 b/Library/assetDatabase3 index 41e0720..6f69f29 100644 Binary files a/Library/assetDatabase3 and b/Library/assetDatabase3 differ diff --git a/Library/metadata/68/68ec2fe99d1108b9d0006a298d76c639 b/Library/metadata/68/68ec2fe99d1108b9d0006a298d76c639 index f4c1d23..52a96a0 100644 Binary files a/Library/metadata/68/68ec2fe99d1108b9d0006a298d76c639 and b/Library/metadata/68/68ec2fe99d1108b9d0006a298d76c639 differ diff --git a/Library/metadata/9c/9cffcde21a77c864389d63351fb4e728 b/Library/metadata/9c/9cffcde21a77c864389d63351fb4e728 index 99516e8..b89dc46 100644 Binary files a/Library/metadata/9c/9cffcde21a77c864389d63351fb4e728 and b/Library/metadata/9c/9cffcde21a77c864389d63351fb4e728 differ diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index 8c4c1cc..9326e78 100644 Binary files a/ProjectSettings/EditorBuildSettings.asset and b/ProjectSettings/EditorBuildSettings.asset differ diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 0e2f8d1..650cdc2 100644 Binary files a/ProjectSettings/ProjectSettings.asset and b/ProjectSettings/ProjectSettings.asset differ diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index e21428f..8c9f99e 100644 Binary files a/ProjectSettings/TagManager.asset and b/ProjectSettings/TagManager.asset differ