size 637412 |
size 16523 |
@ -0,0 +1,7 @@ | |||
fileFormatVersion: 2 | |||
guid: 7d479bacc53922e4498008816aade241 | |||
DefaultImporter: | |||
externalObjects: {} | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
@ -0,0 +1,8 @@ | |||
fileFormatVersion: 2 | |||
guid: 408c7b3fd4c3afc4c9187c4ad234f2f2 | |||
folderAsset: yes | |||
DefaultImporter: | |||
externalObjects: {} | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
@ -0,0 +1,9 @@ | |||
using System.Collections; | |||
using System.Collections.Generic; | |||
using UnityEngine; | |||
public interface IYeetable | |||
{ | |||
void Hold(GameObject child); | |||
void Yeet(); | |||
} |
@ -0,0 +1,11 @@ | |||
fileFormatVersion: 2 | |||
guid: 2bbcd198578c95d40a2dd8f089364686 | |||
MonoImporter: | |||
externalObjects: {} | |||
serializedVersion: 2 | |||
defaultReferences: [] | |||
executionOrder: 0 | |||
icon: {instanceID: 0} | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
@ -0,0 +1,62 @@ | |||
using System.Collections; | |||
using System.Collections.Generic; | |||
using UnityEngine; | |||
public class YeetController : MonoBehaviour | |||
{ | |||
public GameObject parent { get; set; } | |||
public float yeetVelocity = 10f; | |||
public float yeetDuration = 2f; | |||
public enum YeetState { Unheld, Held, Yeeting }; | |||
public YeetState yeetState { get; private set; } = YeetState.Unheld; | |||
private GameObject _child; | |||
private float _time; | |||
public void Hold(GameObject child) | |||
{ | |||
_child = child; | |||
_child.transform.parent = parent.transform; | |||
yeetState = YeetState.Held; | |||
} | |||
public void Yeet() | |||
{ | |||
_child.transform.parent = null; | |||
_child.transform.rotation = parent.transform.rotation; | |||
_child.GetComponent<Rigidbody>().velocity = _child.transform.forward * yeetVelocity; | |||
yeetState = YeetState.Yeeting; | |||
_time = yeetDuration; | |||
} | |||
// Start is called before the first frame update | |||
void Start() | |||
{ | |||
} | |||
// Update is called once per frame | |||
void Update() | |||
{ | |||
switch(yeetState) | |||
{ | |||
case YeetState.Yeeting: | |||
//_child.transform.position += _child.transform.forward * yeetVelocity * Time.deltaTime; | |||
_time -= Time.deltaTime; | |||
if(_time <= 0f) | |||
{ | |||
Debug.Log("YeetController.Update: Yeet finished"); | |||
yeetState = YeetState.Unheld; | |||
} | |||
break; | |||
case YeetState.Held: | |||
break; | |||
case YeetState.Unheld: | |||
_child = null; | |||
break; | |||
} | |||
} | |||
} |
@ -0,0 +1,11 @@ | |||
fileFormatVersion: 2 | |||
guid: 188bb300967eea14fb681a94fc31f911 | |||
MonoImporter: | |||
externalObjects: {} | |||
serializedVersion: 2 | |||
defaultReferences: [] | |||
executionOrder: 0 | |||
icon: {instanceID: 0} | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
@ -0,0 +1,8 @@ | |||
fileFormatVersion: 2 | |||
guid: 0899cb5e9885fc441bc2cfd3746b0ed9 | |||
folderAsset: yes | |||
DefaultImporter: | |||
externalObjects: {} | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
@ -0,0 +1,65 @@ | |||
using System.Collections; | |||
using System.Collections.Generic; | |||
using UnityEngine; | |||
public class ControllerBase : MonoBehaviour | |||
{ | |||
public CharacterController characterController; | |||
public float speed = 6f; | |||
public float sensitivity = 10f; | |||
public GameObject body; | |||
public GameObject testChild; | |||
public YeetController yeetController; | |||
void Start() | |||
{ | |||
} | |||
// Update is called once per frame | |||
void Update() | |||
{ | |||
Move(); | |||
//Rotate(); | |||
if(Input.GetButtonDown("Fire1")) | |||
{ | |||
yeetController.parent = body; | |||
switch(yeetController.yeetState) | |||
{ | |||
case YeetController.YeetState.Unheld: | |||
yeetController.Hold(testChild); | |||
// Grab nearest baby | |||
break; | |||
case YeetController.YeetState.Held: | |||
yeetController.Yeet(); | |||
// Yeet baby | |||
break; | |||
case YeetController.YeetState.Yeeting: | |||
// Cooldown? | |||
break; | |||
} | |||
} | |||
} | |||
void Move() | |||
{ | |||
float horizontal = Input.GetAxis("Horizontal"); | |||
float vertical = Input.GetAxis("Vertical"); | |||
Vector3 move = transform.forward * vertical + transform.right * horizontal; | |||
characterController.Move(speed * Time.deltaTime * move); | |||
} | |||
void Rotate() | |||
{ | |||
float horizontal = Input.GetAxis("Mouse Y"); | |||
body.transform.Rotate(0, horizontal * sensitivity, 0); | |||
} | |||
} |
@ -0,0 +1,11 @@ | |||
fileFormatVersion: 2 | |||
guid: 5f1380fc8f7b79446aa26ea089b4362a | |||
MonoImporter: | |||
externalObjects: {} | |||
serializedVersion: 2 | |||
defaultReferences: [] | |||
executionOrder: 0 | |||
icon: {instanceID: 0} | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
@ -0,0 +1,91 @@ | |||
%YAML 1.1 | |||
%TAG !u! tag:unity3d.com,2011: | |||
--- !u!21 &2100000 | |||
Material: | |||
serializedVersion: 6 | |||
m_ObjectHideFlags: 0 | |||
m_CorrespondingSourceObject: {fileID: 0} | |||
m_PrefabInstance: {fileID: 0} | |||
m_PrefabAsset: {fileID: 0} | |||
m_Name: Red | |||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} | |||
m_ShaderKeywords: | |||
m_LightmapFlags: 4 | |||
m_EnableInstancingVariants: 0 | |||
m_DoubleSidedGI: 0 | |||
m_CustomRenderQueue: 2000 | |||
stringTagMap: | |||
RenderType: Opaque | |||
disabledShaderPasses: [] | |||
m_SavedProperties: | |||
serializedVersion: 3 | |||
m_TexEnvs: | |||
- _BaseMap: | |||
m_Texture: {fileID: 0} | |||
m_Scale: {x: 1, y: 1} | |||
m_Offset: {x: 0, y: 0} | |||
- _BumpMap: | |||
m_Texture: {fileID: 0} | |||
m_Scale: {x: 1, y: 1} | |||
m_Offset: {x: 0, y: 0} | |||
- _EmissionMap: | |||
m_Texture: {fileID: 0} | |||
m_Scale: {x: 1, y: 1} | |||
m_Offset: {x: 0, y: 0} | |||
- _MainTex: | |||
m_Texture: {fileID: 0} | |||
m_Scale: {x: 1, y: 1} | |||
m_Offset: {x: 0, y: 0} | |||
- _MetallicGlossMap: | |||
m_Texture: {fileID: 0} | |||
m_Scale: {x: 1, y: 1} | |||
m_Offset: {x: 0, y: 0} | |||
- _OcclusionMap: | |||
m_Texture: {fileID: 0} | |||
m_Scale: {x: 1, y: 1} | |||
m_Offset: {x: 0, y: 0} | |||
- _SpecGlossMap: | |||
m_Texture: {fileID: 0} | |||
m_Scale: {x: 1, y: 1} | |||
m_Offset: {x: 0, y: 0} | |||
m_Floats: | |||
- _AlphaClip: 0 | |||
- _Blend: 0 | |||
- _BumpScale: 1 | |||
- _Cull: 2 | |||
- _Cutoff: 0.5 | |||
- _DstBlend: 0 | |||
- _EnvironmentReflections: 1 | |||
- _GlossMapScale: 0 | |||
- _Glossiness: 0 | |||
- _GlossyReflections: 0 | |||
- _Metallic: 0 | |||
- _OcclusionStrength: 1 | |||
- _QueueOffset: 0 | |||
- _ReceiveShadows: 1 | |||
- _Smoothness: 0.5 | |||
- _SmoothnessTextureChannel: 0 | |||
- _SpecularHighlights: 1 | |||
- _SrcBlend: 1 | |||
- _Surface: 0 | |||
- _WorkflowMode: 1 | |||
- _ZWrite: 1 | |||
m_Colors: | |||
- _BaseColor: {r: 1, g: 0.2216981, b: 0.2216981, a: 1} | |||
- _Color: {r: 1, g: 1, b: 1, a: 1} | |||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} | |||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} | |||
m_BuildTextureStacks: [] | |||
--- !u!114 &6945557477375298710 | |||
MonoBehaviour: | |||
m_ObjectHideFlags: 11 | |||
m_CorrespondingSourceObject: {fileID: 0} | |||
m_PrefabInstance: {fileID: 0} | |||
m_PrefabAsset: {fileID: 0} | |||
m_GameObject: {fileID: 0} | |||
m_Enabled: 1 | |||
m_EditorHideFlags: 0 | |||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} | |||
m_Name: | |||
m_EditorClassIdentifier: | |||
version: 2 |
@ -0,0 +1,8 @@ | |||
fileFormatVersion: 2 | |||
guid: 0496129d598a9d04f983aa47954a629f | |||
NativeFormatImporter: | |||
externalObjects: {} | |||
mainObjectFileID: 0 | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
size 14540 |
size 14396 |
size 15468 |
@ -0,0 +1,101 @@ | |||
fileFormatVersion: 2 | |||
guid: 20cac98bee24b6644b3264964af77935 | |||
ModelImporter: | |||
serializedVersion: 20101 | |||
internalIDToNameTable: [] | |||
externalObjects: {} | |||
materials: | |||
materialImportMode: 1 | |||
materialName: 0 | |||
materialSearch: 1 | |||
materialLocation: 1 | |||
animations: | |||
legacyGenerateAnimations: 4 | |||
bakeSimulation: 0 | |||
resampleCurves: 1 | |||
optimizeGameObjects: 0 | |||
motionNodeName: | |||
rigImportErrors: | |||
rigImportWarnings: | |||
animationImportErrors: | |||
animationImportWarnings: | |||
animationRetargetingWarnings: | |||
animationDoRetargetingWarnings: 0 | |||
importAnimatedCustomProperties: 0 | |||
importConstraints: 0 | |||
animationCompression: 1 | |||
animationRotationError: 0.5 | |||
animationPositionError: 0.5 | |||
animationScaleError: 0.5 | |||
animationWrapMode: 0 | |||
extraExposedTransformPaths: [] | |||
extraUserProperties: [] | |||
clipAnimations: [] | |||
isReadable: 0 | |||
meshes: | |||
lODScreenPercentages: [] | |||
globalScale: 8.5 | |||
meshCompression: 0 | |||
addColliders: 0 | |||
useSRGBMaterialColor: 1 | |||
sortHierarchyByName: 1 | |||
importVisibility: 1 | |||
importBlendShapes: 1 | |||
importCameras: 1 | |||
importLights: 1 | |||
fileIdsGeneration: 2 | |||
swapUVChannels: 0 | |||
generateSecondaryUV: 0 | |||
useFileUnits: 1 | |||
keepQuads: 0 | |||
weldVertices: 1 | |||
bakeAxisConversion: 0 | |||
preserveHierarchy: 0 | |||
skinWeightsMode: 0 | |||
maxBonesPerVertex: 4 | |||
minBoneWeight: 0.001 | |||
meshOptimizationFlags: -1 | |||
indexFormat: 0 | |||
secondaryUVAngleDistortion: 8 | |||
secondaryUVAreaDistortion: 15.000001 | |||
secondaryUVHardAngle: 88 | |||
secondaryUVMarginMethod: 1 | |||
secondaryUVMinLightmapResolution: 40 | |||
secondaryUVMinObjectScale: 1 | |||
secondaryUVPackMargin: 4 | |||
useFileScale: 1 | |||
tangentSpace: | |||
normalSmoothAngle: 60 | |||
normalImportMode: 0 | |||
tangentImportMode: 3 | |||
normalCalculationMode: 4 | |||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 | |||
blendShapeNormalImportMode: 1 | |||
normalSmoothingSource: 0 | |||
referencedClips: [] | |||
importAnimation: 1 | |||
humanDescription: | |||
serializedVersion: 3 | |||
human: [] | |||
skeleton: [] | |||
armTwist: 0.5 | |||
foreArmTwist: 0.5 | |||
upperLegTwist: 0.5 | |||
legTwist: 0.5 | |||
armStretch: 0.05 | |||
legStretch: 0.05 | |||
feetSpacing: 0 | |||
globalScale: 8.5 | |||
rootMotionBoneName: | |||
hasTranslationDoF: 0 | |||
hasExtraRoot: 0 | |||
skeletonHasParents: 1 | |||
lastHumanDescriptionAvatarSource: {instanceID: 0} | |||
autoGenerateAvatarMappingIfUnspecified: 1 | |||
animationType: 2 | |||
humanoidOversampling: 1 | |||
avatarSetup: 0 | |||
additionalBone: 0 | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
size 15484 |
@ -0,0 +1,110 @@ | |||
%YAML 1.1 | |||
%TAG !u! tag:unity3d.com,2011: | |||
--- !u!114 &1051237570 | |||
MonoBehaviour: | |||
m_ObjectHideFlags: 0 | |||
m_CorrespondingSourceObject: {fileID: 0} | |||
m_PrefabInstance: {fileID: 0} | |||
m_PrefabAsset: {fileID: 0} | |||
m_GameObject: {fileID: 33932531309654967} | |||
m_Enabled: 1 | |||
m_EditorHideFlags: 0 | |||
m_Script: {fileID: 11500000, guid: 188bb300967eea14fb681a94fc31f911, type: 3} | |||
m_Name: | |||
m_EditorClassIdentifier: | |||
yeetVelocity: 10 | |||
yeetDuration: 2 | |||
--- !u!1001 &2714160732044909285 | |||
PrefabInstance: | |||
m_ObjectHideFlags: 0 | |||
serializedVersion: 2 | |||
m_Modification: | |||
m_TransformParent: {fileID: 0} | |||
m_Modifications: | |||
- target: {fileID: 2725293204815276921, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_Mesh | |||
value: | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293204815276924, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_Mesh | |||
value: | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293204815276924, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_Convex | |||
value: 1 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293204815276924, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_IsTrigger | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293204815276927, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_Mesh | |||
value: | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018834, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_Name | |||
value: YeetyPlayer Variant | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_RootOrder | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalPosition.x | |||
value: 1.2684288 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalPosition.y | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalPosition.z | |||
value: -6.7718506 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalRotation.w | |||
value: 1 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalRotation.x | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalRotation.y | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalRotation.z | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalEulerAnglesHint.x | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalEulerAnglesHint.y | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018844, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_LocalEulerAnglesHint.z | |||
value: 0 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018846, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: m_SlopeLimit | |||
value: 90 | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018847, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: body | |||
value: | |||
objectReference: {fileID: 0} | |||
- target: {fileID: 2725293205319018847, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
propertyPath: testChild | |||
value: | |||
objectReference: {fileID: 0} | |||
m_RemovedComponents: [] | |||
m_SourcePrefab: {fileID: 100100000, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
--- !u!1 &33932531309654967 stripped | |||
GameObject: | |||
m_CorrespondingSourceObject: {fileID: 2725293205319018834, guid: 47d3f018734864140ba302f6972ba575, type: 3} | |||
m_PrefabInstance: {fileID: 2714160732044909285} | |||
m_PrefabAsset: {fileID: 0} |
@ -0,0 +1,7 @@ | |||
fileFormatVersion: 2 | |||
guid: c3cc089e72190e74aab4c6592121b553 | |||
PrefabImporter: | |||
externalObjects: {} | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
@ -0,0 +1,23 @@ | |||
using System.Collections; | |||
using System.Collections.Generic; | |||
using UnityEngine; | |||
public class YeetHandle : MonoBehaviour | |||
{ | |||
private BoxCollider m_handleArea; | |||
// Start is called before the first frame update | |||
void Start() | |||
{ | |||
m_handleArea = gameObject.AddComponent<BoxCollider>(); | |||
m_handleArea.isTrigger = true; | |||
m_handleArea.size = new Vector3(2, 2, 2); | |||
} | |||
// Update is called once per frame | |||
void Update() | |||
{ | |||
} | |||
} |
@ -0,0 +1,11 @@ | |||
fileFormatVersion: 2 | |||
guid: a18fca169b45e1642b530ee6dc555240 | |||
MonoImporter: | |||
externalObjects: {} | |||
serializedVersion: 2 | |||
defaultReferences: [] | |||
executionOrder: 0 | |||
icon: {instanceID: 0} | |||
userData: | |||
assetBundleName: | |||
assetBundleVariant: |
size 9731 |
size 411 |