mirror of
https://github.com/nothke/quality-control.git
synced 2024-12-22 07:47:30 +00:00
Weight detector
This commit is contained in:
parent
3893125175
commit
f20994a8db
8
Assets/Audio.meta
Normal file
8
Assets/Audio.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ce453247b3c5cf14c80ea8ec288530d9
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -615,6 +615,23 @@ PrefabInstance:
|
|||||||
m_AddedGameObjects: []
|
m_AddedGameObjects: []
|
||||||
m_AddedComponents: []
|
m_AddedComponents: []
|
||||||
m_SourcePrefab: {fileID: 100100000, guid: 79b1ab56bfd061d46a689142c3992685, type: 3}
|
m_SourcePrefab: {fileID: 100100000, guid: 79b1ab56bfd061d46a689142c3992685, type: 3}
|
||||||
|
--- !u!1 &891192242 stripped
|
||||||
|
GameObject:
|
||||||
|
m_CorrespondingSourceObject: {fileID: 2145288034412905379, guid: 0fb5ec34d66e2824c92ed0b720ca13df, type: 3}
|
||||||
|
m_PrefabInstance: {fileID: 6217297023818049519}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
--- !u!114 &891192249
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 891192242}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: f935fa08cd417994097c7b59d2547f0d, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
--- !u!1001 &1075122282
|
--- !u!1001 &1075122282
|
||||||
PrefabInstance:
|
PrefabInstance:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
@ -1333,6 +1350,10 @@ PrefabInstance:
|
|||||||
serializedVersion: 3
|
serializedVersion: 3
|
||||||
m_TransformParent: {fileID: 0}
|
m_TransformParent: {fileID: 0}
|
||||||
m_Modifications:
|
m_Modifications:
|
||||||
|
- target: {fileID: 6230516344177671089, guid: 79b1ab56bfd061d46a689142c3992685, type: 3}
|
||||||
|
propertyPath: m_Mass
|
||||||
|
value: 0.5
|
||||||
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 7217391875016474312, guid: 79b1ab56bfd061d46a689142c3992685, type: 3}
|
- target: {fileID: 7217391875016474312, guid: 79b1ab56bfd061d46a689142c3992685, type: 3}
|
||||||
propertyPath: m_LocalPosition.x
|
propertyPath: m_LocalPosition.x
|
||||||
value: 22.29
|
value: 22.29
|
||||||
@ -1555,7 +1576,10 @@ PrefabInstance:
|
|||||||
m_RemovedComponents: []
|
m_RemovedComponents: []
|
||||||
m_RemovedGameObjects: []
|
m_RemovedGameObjects: []
|
||||||
m_AddedGameObjects: []
|
m_AddedGameObjects: []
|
||||||
m_AddedComponents: []
|
m_AddedComponents:
|
||||||
|
- targetCorrespondingSourceObject: {fileID: 2145288034412905379, guid: 0fb5ec34d66e2824c92ed0b720ca13df, type: 3}
|
||||||
|
insertIndex: -1
|
||||||
|
addedObject: {fileID: 891192249}
|
||||||
m_SourcePrefab: {fileID: 100100000, guid: 0fb5ec34d66e2824c92ed0b720ca13df, type: 3}
|
m_SourcePrefab: {fileID: 100100000, guid: 0fb5ec34d66e2824c92ed0b720ca13df, type: 3}
|
||||||
--- !u!1001 &6783293368001247804
|
--- !u!1001 &6783293368001247804
|
||||||
PrefabInstance:
|
PrefabInstance:
|
||||||
|
44
Assets/Scripts/WeightDetector.cs
Normal file
44
Assets/Scripts/WeightDetector.cs
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
public class WeightDetector : MonoBehaviour
|
||||||
|
{
|
||||||
|
HashSet<Rigidbody> enteredBodies = new HashSet<Rigidbody>();
|
||||||
|
|
||||||
|
private void OnCollisionEnter(Collision collision)
|
||||||
|
{
|
||||||
|
var rb = collision.rigidbody;
|
||||||
|
|
||||||
|
if (rb)
|
||||||
|
{
|
||||||
|
enteredBodies.Add(rb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnCollisionExit(Collision collision)
|
||||||
|
{
|
||||||
|
var rb = collision.rigidbody;
|
||||||
|
|
||||||
|
if (rb)
|
||||||
|
{
|
||||||
|
enteredBodies.Remove(rb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public float GetTotalWeight()
|
||||||
|
{
|
||||||
|
float totalMass = 0;
|
||||||
|
foreach (var body in enteredBodies)
|
||||||
|
{
|
||||||
|
totalMass += body.mass;
|
||||||
|
}
|
||||||
|
|
||||||
|
return totalMass;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Update()
|
||||||
|
{
|
||||||
|
Debug.Log(GetTotalWeight());
|
||||||
|
}
|
||||||
|
}
|
11
Assets/Scripts/WeightDetector.cs.meta
Normal file
11
Assets/Scripts/WeightDetector.cs.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: f935fa08cd417994097c7b59d2547f0d
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
Loading…
Reference in New Issue
Block a user