Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Luckebjucke · Jun 16, 2013 at 06:42 PM · door

Need help to limit the range of where I can open the door.

Hello I have been using the ShadowDemoscript and have made it possible to open doors like in Amnesia but with the difference that I open and closes the door by holding down the F key. The problem is that there is no limit of how far I can be from the door, is the mouse at the door and I hold down F it opens. How can I solve this. I might add that I am really new and don't know how to program in Java, just have guessed basic where to change funtions . The script I use.

var spring = 50.0; var damper = 5.0; var drag = 10.0; var angularDrag = 5.0; var distance = 0.2; var pushForce = 0.2; var attachToCenterOfMass = false;

var highlightMaterial : Material; private var highlightObject : GameObject;

private var springJoint : SpringJoint;

function Update() { var mainCamera = FindCamera();

 highlightObject = null;
 if( springJoint != null && springJoint.connectedBody != null )
 {
     highlightObject = springJoint.connectedBody.gameObject;
 }
 else
 {
     // We need to actually hit an object
     var hitt : RaycastHit;
     if( Physics.Raycast(mainCamera.ScreenPointToRay(Input.mousePosition),  hitt, 100 ) ) {
         if( hitt.rigidbody && !hitt.rigidbody.isKinematic ) {
             highlightObject = hitt.rigidbody.gameObject;
         }
     }
 }
 
     
 // Make sure the user pressed the mouse down
 if (!Input.GetKey(KeyCode.F))
     return;

     
 // We need to actually hit an object
 var hit : RaycastHit;
 if (!Physics.Raycast(mainCamera.ScreenPointToRay(Input.mousePosition),  hit, 100)) {
     return;
 }
 // We need to hit a rigidbody that is not kinematic
 if (!hit.rigidbody || hit.rigidbody.isKinematic) {
     return;
 }
 
 if (!springJoint)
 {
     var go = new GameObject("Rigidbody dragger");
     body = go.AddComponent ("Rigidbody");
     springJoint = go.AddComponent ("SpringJoint");
     body.isKinematic = true;
 }
 
 springJoint.transform.position = hit.point;
 if (attachToCenterOfMass)
 {
     var anchor = transform.TransformDirection(hit.rigidbody.centerOfMass) + hit.rigidbody.transform.position;
     anchor = springJoint.transform.InverseTransformPoint(anchor);
     springJoint.anchor = anchor;
 }
 else
 {
     springJoint.anchor = Vector3.zero;
 }
 
 springJoint.spring = spring;
 springJoint.damper = damper;
 springJoint.maxDistance = distance;
 springJoint.connectedBody = hit.rigidbody;
 
 DragObject(hit.distance, hit.point, mainCamera.ScreenPointToRay(Input.mousePosition).direction);

}

function DragObject (distance : float, hitpoint : Vector3, dir : Vector3) { var startTime = Time.time; var mousePos = Input.mousePosition;

 var oldDrag = springJoint.connectedBody.drag;
 var oldAngularDrag = springJoint.connectedBody.angularDrag;
 springJoint.connectedBody.drag = drag;
 springJoint.connectedBody.angularDrag = angularDrag;
 var mainCamera = FindCamera();
 while (Input.GetKey(KeyCode.F))
 {
     var ray = mainCamera.ScreenPointToRay (Input.mousePosition);
     springJoint.transform.position = ray.GetPoint(distance);
     yield;
 }
 
 if (Mathf.Abs(mousePos.x - Input.mousePosition.x) <= 2 && Mathf.Abs(mousePos.y - Input.mousePosition.y) <= 2 && Time.time - startTime < .2 && springJoint.connectedBody)
 {
     dir.y = 0;
     dir.Normalize();
     springJoint.connectedBody.AddForceAtPosition(dir * pushForce, hitpoint, ForceMode.VelocityChange);
     ToggleLight( springJoint.connectedBody.gameObject );
 }    
 
 
 if (springJoint.connectedBody)
 {
     springJoint.connectedBody.drag = oldDrag;
     springJoint.connectedBody.angularDrag = oldAngularDrag;
     springJoint.connectedBody = null;
 }

}

static function ToggleLight( go : GameObject ) {
var theLight : Light = go.GetComponentInChildren(Light); if( !theLight ) return;

 theLight.enabled = !theLight.enabled;
 var illumOn = theLight.enabled;
 var renderers = go.GetComponentsInChildren(MeshRenderer);
 for( var r : MeshRenderer in renderers )
 {
     if( r.gameObject.layer == 1 )
     {
         r.material.shader = Shader.Find(illumOn ? "Self-Illumin/Diffuse" : "Diffuse");
     }
 }

}

function FindCamera () { if (camera) return camera; else return Camera.main; }

function OnPostRender() { if( highlightObject == null ) return;

 var go = highlightObject;
 highlightMaterial.SetPass( 0 );
 var meshes = go.GetComponentsInChildren(MeshFilter);
 for( var m : MeshFilter in meshes )
 {
     Graphics.DrawMeshNow( m.sharedMesh, m.transform.position, m.transform.rotation );
 }

}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by kubci98 · Jun 22, 2013 at 03:06 PM

In first script, line 10, change 100 to less. For more info about raycasting, see http://docs.unity3d.com/Documentation/ScriptReference/Physics.Raycast.html.

Same thing in line 25.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

15 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

Heath system need help 1 Answer

Door script not completely working help! 1 Answer

Can someone help me fix my Javascript for Flickering Light? 6 Answers

Setting Scroll View Width GUILayout 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges