Commit f9b94557 authored by 15박보승's avatar 15박보승 Committed by Merseong

Configurable Joint 를 통한 Grapple 구현

parent 73a9c6fe
This diff is collapsed.
fileFormatVersion: 2
guid: c78b775545d133843affccaaf7348e6b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DistanceJoint3D : MonoBehaviour
{
public Rigidbody ConnectedRigidbody;
public float distance;
private Rigidbody rb;
private void Awake()
{
rb = GetComponent<Rigidbody>();
}
private void Start()
{
distance = Vector3.Distance(rb.position, ConnectedRigidbody.position);
}
private void FixedUpdate()
{
var connection = rb.position - ConnectedRigidbody.position;
// var distanceDiscrepancy = distance - connection.magnitude;
rb.velocity = connection.normalized * Physics.gravity.y + Physics.gravity;
}
}
fileFormatVersion: 2
guid: e179ac458e6d7c94284ef49322fa5428
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerController : MonoBehaviour
{
public float distance = 10.0f;
private void Start()
{
}
private void Update()
{
if(Input.GetKey(KeyCode.A)){
GetComponent<Rigidbody>().AddForce(-transform.right * 100);
}
}
}
fileFormatVersion: 2
guid: 2875488fce740ff478556f0ecd33994c
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
......@@ -4,7 +4,7 @@
PlayerSettings:
m_ObjectHideFlags: 0
serializedVersion: 18
productGUID: 00000000000000000000000000000000
productGUID: 1648db810acc3c041938b2d93e4f2d87
AndroidProfiler: 0
AndroidFilterTouchesWhenObscured: 0
AndroidEnableSustainedPerformanceMode: 0
......@@ -12,8 +12,8 @@ PlayerSettings:
targetDevice: 2
useOnDemandResources: 0
accelerometerFrequency: 60
companyName:
productName:
companyName: DefaultCompany
productName: Grapplers
defaultCursor: {fileID: 0}
cursorHotspot: {x: 0, y: 0}
m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment