Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 svettgunnar · Sep 07, 2011 at 08:46 PM · sceneloadscoredeath

Load a scene after 3 deaths and show the score

Hey there, just wondering if I can get a few tips on sorting my problem out. Anyway, I got a script that makes me respawn when I die so I can respawn all the time but I wanna fix it so after 3 deaths It will load a new scene that shows me the score I got... I got the scripts for the scores so I can see it ingame but not on a new scene. I want it to load a new scene after 3 deaths and show me the score I got then. So my problems is that I want it to load a new scene after 3 deaths and then show me the score I got.

is it even possible to load a scene after 3 deaths and show the score I got ( thru the GUI ) ?

Well, Here is the scrip I'm using to respawn when I die:


pragma strict
pragma downcast

var checkpoint : Transform;

function OnSignal () {
transform.position = checkpoint.position;
transform.rotation = checkpoint.rotation;

 ResetHealthOnAll ();

}

static function ResetHealthOnAll () {
var healthObjects : Health[] = FindObjectsOfType (Health);
for (var health : Health in healthObjects) {
health.dead = false;
health.health = health.


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 SisterKy · Sep 07, 2011 at 08:57 PM 0
Share

don't use '3' as a tag. also, you don't need to say the same thing with 5 different versions of wording.

avatar image aldonaletto · Sep 07, 2011 at 09:12 PM 0
Share

The for is incomplete

avatar image SisterKy · Sep 07, 2011 at 09:18 PM 0
Share

also, I might be mistaken, but don't you need # in front of pragma?

does this script even work or does it give you errors all over the place?

2 Replies

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by aldonaletto · Sep 07, 2011 at 09:07 PM

The easiest way is to use static vars - they are created when the program begins, and survive until you exit the game. You can have a Control.js script, for instance, attached to the player, where you count lives and score - something like this:

static var life: int = 3; static var score: int = 0;

function Update(){ if (life Control.life and Control.score When the player dies, decrement the variable Control.life. When getting points, add them to Control.score.
In the ShowScore level, read these variables and show them with GUIText or GUI.Label.

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

Answer by SisterKy · Sep 07, 2011 at 08:55 PM

it's totally possible.

custom google for counter, loadlevel, dontdestroyonload and scoreboard and write a script for it. Rock on.

Greetz, Ky.

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

Load New Scene After Player Death? 0 Answers

Load Custom Scene 2 Answers

Anyway to save which seen the player was on, then load that scene back from another one at a different time? 2 Answers

Custom properties not updating as expected 1 Answer

Substances rendering slowly after level start. 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