ExplosionWobble.cs 654 B

12345678910111213141516171819202122232425
  1. //======= Copyright (c) Valve Corporation, All rights reserved. ===============
  2. //
  3. // Purpose: Makes the weeble wobble
  4. //
  5. //=============================================================================
  6. using UnityEngine;
  7. using System.Collections;
  8. namespace Valve.VR.InteractionSystem
  9. {
  10. //-------------------------------------------------------------------------
  11. public class ExplosionWobble : MonoBehaviour
  12. {
  13. //-------------------------------------------------
  14. public void ExplosionEvent( Vector3 explosionPos )
  15. {
  16. var rb = GetComponent<Rigidbody>();
  17. if ( rb )
  18. {
  19. rb.AddExplosionForce( 2000, explosionPos, 10.0f );
  20. }
  21. }
  22. }
  23. }