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 cocoscooky · Jun 15, 2015 at 09:47 AM · animationcounterdouble

Score Points and Animation

For my game the player is supposed to fulfill different little tasks, like collecting 5 bags of gold, and when he collects these 5 items I want to give the player a star as reward and I want an animation of a star rotating around itself in the middle of the screen. The counter for the first items works so far, and the counter for the stars is displayed but doesn't add up when supposed to. Also, I created a star and the animation in 3DS max and imported that into Unity, I named the animation "Drehen", how can I get it to play when the player actually gets a star? This is my code atm, thanks for any help!

 using UnityEngine;
 using UnityEngine.UI;
 using System.Collections;
 
 public class SammelnCounter : MonoBehaviour {
 
 
     public Text sackZaehler;
     private int zaehler;
     public Text sternZaehler;
     private int sternencounter;
     Animator anim;
 
     void Start () {
 
         zaehler = 0;    
         sternencounter = 0;
         SackZaehlText();
         anim = GetComponent<Animator>();
     }
 
 
     void FixedUpdate() {
         
     }
 
     void OnTriggerEnter(Collider other) {
 
         if (other.gameObject.CompareTag("Sack")) {
             other.gameObject.SetActive (false);
             zaehler = zaehler + 1;
             SackZaehlText();
             
         }
     }
     
     void SackZaehlText() {
 
         if (zaehler >= 5) {
             sternencounter = sternencounter + 1;
             sackZaehler.text = "Quest abgeschlossen!";
             Animation.Play("Drehen");
         } else {
             sackZaehler.text = "Goldsaecke: " + zaehler.ToString();    
             sternZaehler.text = "Sterne: " + sternencounter.ToString();
         }
     }
 }
Comment
Add comment · Show 3
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 Nerevar · Jun 15, 2015 at 02:56 PM 0
Share

Where are you stuck exactly? you are struggling with playing the animations itself or the way it should be triggered? do you have any errors?

is the star in 3D? or is it just a sprite?

avatar image cocoscooky · Jun 15, 2015 at 06:03 PM 0
Share

The score for the star is displayed on screen, but when I collect 5 goldbags the counter for the starts stays add 0, but it's supposed to go up by 1. And at the same time I want to trigger the animation, i don't exactly know how. It's a 3D Star created in 3DS $$anonymous$$ax, both the star and the animation were made in $$anonymous$$ax.

avatar image Vice_Versa · Jun 15, 2015 at 06:45 PM 0
Share

never dealt with animations, cant help you there but it looks like the sternencounter thing should be increasing. id say put a debug.log before the if statement in SackZaehlText() and one right after the if and before sternencounter = sternencounter + 1; if either one of those doesnt display, youll know exactly where its not working and can move on from there.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Animation Play On Bullet Shot 1 Answer

Problem with Collecting Stars 1 Answer

How do I make a double-tap system for dashing 7 Answers

Can the animation editor create local rotational data? 3 Answers

GUI Counter Based on Animation or RaycastHit 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