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 sarkonic · Apr 13, 2021 at 07:33 AM · errorstackoverflow

StackOverFlow Exception when animating object

Hello, still new to Unity and coding with C#. I've been following a tutorial to make a lockpicking mini game (similar to skyrim or fallout style) and have reached a wall:

 using System;
 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class LockPickingMiniGame : MonoBehaviour
 {
     float pickPosition;
     public float PickPosition
     {
         get { return PickPosition; }
         set
         {
             pickPosition = value;
             pickPosition = Mathf.Clamp(pickPosition, 0f, 1f);
         }
     }
     [SerializeField] float pickSpeed = 3f;
 
     float cylinderPosition;
     public float CylinderPosition
     {
         get { return cylinderPosition; }
         set
         {
             cylinderPosition = value;
             cylinderPosition = Mathf.Clamp(cylinderPosition, 0f, 1f);
         }
     }
 
     Animator animator;
 
     private void Awake()
     {
         animator = GetComponent<Animator>();
     }
 
     private void Update()
     {
         Pick();
         UpdateAnimator();
     }
     private void Pick()
     {
 
         PickPosition += Input.GetAxis("Horizontal") * Time.deltaTime * pickSpeed;
     }
 
 
     private void UpdateAnimator()
     {
         animator.SetFloat("PickPosition", PickPosition);
     }
 }




When I click run in Unity, it doesn't even get a chance for me to press the A and D keys which is supposed to move the pick around the lock. I've looked up and down through the tutorial several times and tried recreating the object, and still the same error. Hopefully someone can see whatever issue I am having: it would be a great help. If more info is needed, I'll do my best to provide.

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
Best Answer

Answer by andrew-lukasik · Apr 13, 2021 at 07:36 AM

Replace:

 get { return PickPosition; }

with:

 get { return pickPosition; }

TL;DR: PickPosition is referencing itself ad infinitum. This why pickPosition should be called _pickPosition so you don't confuse it with PickPosition this easily.

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 sarkonic · Apr 13, 2021 at 08:31 AM 1
Share

Wow I can't believe I overlooked that small mistake, thanks so much. Normally I try to distinguish my variables differently in code, but was following a tutorial and wanted to make sure I was doing everything correct :) shouldn't be going against my habits.

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

156 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 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 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 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 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 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 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 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

I'm getting a StackOverFlowException 1 Answer

InputField add text 'StackOverflowException' error 1 Answer

Hey guys, the following code gives me a StackOverFlowException and I'm just wondering how i can fix it. Thanks :) 2 Answers

Serialization depth limit exceeded 3 Answers

Unity web pallyer install problem 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