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 JPHF39 · Apr 30, 2015 at 10:37 PM · clicklinedraw

Draw line between two clicked points.

Pretty new to scripting, can't seem to store my first mouse click. Everything else, I'm not too concerned about since I can work through it and probably fix it. Whenever I SetPosition on my two LineRenderer points to define my line, the second one overrides the first one. Not sure how to store my first click, and store it separately from the second click position. Any help is greatly appreciated!

 using UnityEngine;
 using System.Collections;
 
 public class DrawLineAgain : MonoBehaviour {
     public GameObject linez;
     private float screenHeight = Screen.height;
     private float screenWidth = Screen.width;
     private int counter = 0;
 
 
     
 
     void Update () {
         if (Input.GetMouseButtonDown (0)) {
             counter++;
             Vector3 firstClick = new Vector3(Input.mousePosition.x/screenWidth, Input.mousePosition.y/screenHeight, 0);
             float firstClickX = firstClick.x;
             float firstClickY = firstClick.y;
             if(counter == 2){
 
             Instantiate(linez);
             LineRenderer newLine = linez.GetComponent<LineRenderer>();
             //newLine.SetPosition(0, firstClick);
                 newLine.SetPosition (0, new Vector3(firstClickX, firstClickY, 0));
                 newLine.SetPosition(1, new Vector3(Input.mousePosition.x/screenWidth, Input.mousePosition.y/screenHeight, 1));
             Debug.Log (counter);
                 counter = 0;
             }
 
 
                 }
     
     }
 }
 

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

2 Replies

· Add your reply
  • Sort: 
avatar image
1

Answer by GregoryNeal · Apr 30, 2015 at 10:42 PM

If you want to store multiple mouse clicks, consider using a list (or an array if you know how many you want to use beforehand). Everytime you click, add the position to the array then when you do the second click, have it read through the array and draw a line between them.

Comment
Add comment · Show 1 · 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
avatar image JPHF39 · May 02, 2015 at 03:10 PM 0
Share

Will try that and post the script in case anyone comes across this issue in the future. Thanks!

avatar image
0

Answer by hbalint1 · May 01, 2015 at 10:06 PM

the fast method is tweaking yours. like:

  using UnityEngine;
  using System.Collections;
  
  public class DrawLineAgain : MonoBehaviour {
      public GameObject linez;
      private LineRenderer newLine;
      private float screenHeight = Screen.height;
      private float screenWidth = Screen.width;
      private bool firstTouch = true;
      private Vector2 firstClick;

      void Start()
      {
           newLine = linez.GetComponent<LineRenderer>();
      }

 

      void Update()
      {
          if (Input.GetMouseButtonDown(0))
          {
              if (firstTouch)
              {
                  firstClick = new Vector2(Input.mousePosition.x / screenWidth, Input.mousePosition.y / screenHeight);
                  firstTouch = false;
              }
              else
              {
                  Vector2 secondClick = new Vector2(Input.mousePosition.x / screenWidth, Input.mousePosition.y / screenHeight);

                  newLine.SetPosition(0, firstClick);
                  newLine.SetPosition(1, secondClick);

                  firstTouch = true;
              }
          }
      }
 }
      

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Click objects to draw a line between them 0 Answers

OnDrag Draw Line For Pathfinding... 1 Answer

Handles.DrawLine refresh rate in scene view 1 Answer

Drawing lines between two touch positions? 4 Answers

GL.Line help? Cannot see line drawn... draw grid using gl.line 4 Answers


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