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 /
This post has been wikified, any user with enough reputation can edit it.
avatar image
0
Question by tiago_23 · Jun 08, 2015 at 10:58 AM · inputcoordinatesgame objectprojection

Draw Plataforms with mouse

Hi Everyone,

I want the users to interact by drawing platforms like the new nintendo game, Mario Maker.

I wrote a simple prototype. The user can click with the mouse in any place of the screen, drag a little and release. The start (click) and end (release) vectors are stored. They are used to create the platform extension (a cube game object with a scale redefinition based on the start and end vectors).

This part is ok. My problem lies on the projection, the conversion between screen coordinates to world coordinates. In every place the user does the movement to create a platform, it appears always on the center of the screen.

Following, the code untill the moment.

Thanks in advance!

using UnityEngine; using System.Collections;

     public class CreateObjects : MonoBehaviour {
     
         //most of the variables can be private - to change
         private Vector3 axisX;
         public Vector3 start;
         public Vector3 end;
         public GameObject platform;
         public float angle, scale; 
         // Use this for initialization
         void Start () 
         {
             axisX = new Vector3 (1, 0, 0);
         }
         
         // Update is called once per frame
         void Update () {
     
             if (Input.GetMouseButtonDown (0)) 
             {
                 start = Camera.main.WorldToViewportPoint(Input.mousePosition);
             }
     
             if (Input.GetMouseButtonUp (0)) 
             {
                 end = Camera.main.WorldToViewportPoint(Input.mousePosition);
                 scale = Vector3.Distance (end, start);
                 Vector3 v = (end - start);
                 v.Normalize();
                 Debug.Log(v.normalized);
                 if(end.y >= start.y)
                 {
                     angle = Vector3.Angle (axisX, end - start);
                 }else{
                     angle = -Vector3.Angle (axisX, end - start);
                 }
             }
     
             //values of the scale - if between 5 and 15 is ok 
             //change it after - experimental values - hard code
             if (scale > 5 && scale < 15) 
             {
                 StartCoroutine("Create");
                 scale = 0;
             }
         }
     
         IEnumerator Create()
         {
             Vector3 position = Camera.main.WorldToViewportPoint((end - start));
     
             GameObject obj = 
                 Instantiate(
                     platform, 
                     position, 
                     Quaternion.AngleAxis(angle, new Vector3(0,0,1)))
                     as GameObject;
     
             return null;
         }
     }  

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 DeathDev · Jun 16, 2015 at 05:44 AM

You seem to be converting from world coordinates to viewport coordinates, with coordinates that are already from the viewport. Possibly try this:

 start = Camera.main.ScreenToWorldPoint(Input.mousePosition);


Along with changing the other occurrences. :)

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Help In Making a SphereCast for 3D Tire! Working RayCast Script included! 0 Answers

How do I get the x and y coordinates out of Input.mousePosition? 2 Answers

How to get points on screen of objects when using Fisheye camera? 0 Answers

ScreenToViewportPoint offset from Input.mousePosition ? 1 Answer

Equirectangular Projection of Sphere onto Texture 2 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