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 missD · Mar 25, 2014 at 06:54 PM · c#flickering

Flick marble

hello, I have a problem with my code to flick the marble in my game. The marble supposed to go forward according to the touch but it just going down and jumping. These are the codes. Anybody knows? please help me.. Thank you.

 private RaycastHit hit;
     public GameObject ball;
     public Camera cam;
     
     public float fullWidth = 256;
     private float thePower;
     public bool increasing = false;
     private bool shooting = false;
     public float barSpeed = 25;
     
 
     
     private LineRenderer line;
     //public float hitDistance = 0.0;
     
     
     
     void Start(){
         
 //        line = GetComponent(LineRenderer);
 //        line.SetColors(Color.green, Color.green);
 //        line.SetWidth(0.1, 0.1);
 //        line.SetVertexCount(2);
         
         if (!cam)
         {
             Destroy(this);
         }
     }
     
     // Update is called once per frame
     void Update () {
         
         /*var ray = Camera.main.ScreenPointToRay (Input.mousePosition);
         Vector3 mouse_pos = Input.mousePosition;
         Vector3 object_pos = Camera.main.WorldToScreenPoint(this.transform.position);
         mouse_pos.x = mouse_pos.x - object_pos.x;
         mouse_pos.y = mouse_pos.y - object_pos.y;
         
         if (Physics.Raycast(ray, out hit))
         {
             
             Debug.Log("hit something");
             Debug.DrawRay (ray.origin, ray.direction * 10, Color.yellow);
             
         }
         
         if (Input.GetMouseButton(0))
         {
           //Vector3 v3 = new Vector3(mouse_pos.x, 0.0f, mouse_pos.y);
           ball.rigidbody.AddForce(mouse_pos);
         }
         */
         
         
         
         
         Vector3 mouse_pos = Input.mousePosition;
         
         var ray = cam.ScreenPointToRay(Input.mousePosition);
         Vector3 position = ray.GetPoint(25.0f);
         position.y = transform.position.y;
         transform.LookAt(position);
         
         if(Physics.Raycast(ray, out hit))
         {
             Debug.DrawLine(ray.origin, ray.direction * 10 ,Color.green);
             
         }
         
         if (!shooting)
         {
             
             if (Input.GetMouseButton(0))
             {
                 increasing = true;
                 //rigidbody.AddForce(position);
             }
             else if (Input.GetMouseButtonUp(0))
             {
                 rigidbody.AddForce(position * thePower *5);
                 increasing = false;
             }
         }
         
         Rect pos = guiTexture.pixelInset;
         pos.xMax = guiTexture.pixelInset.xMin + fullWidth*thePower/fullWidth;
         guiTexture.pixelInset = pos;
         
         
         if(increasing)
         {
             thePower += Time.deltaTime * barSpeed;
             thePower = Mathf.Clamp (thePower, 0, fullWidth);
         }
         else
         {
             thePower = 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

0 Replies

· Add your reply
  • Sort: 

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

20 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 avatar image avatar image avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

TextMesh isn't updating itself. 0 Answers

(C#) GUI Buttons not working 1 Answer

[Answered]Rigid body Movement C# 0 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