• 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
Question by reid · Apr 23, 2011 at 08:50 PM · guinetworkingnetworklabel

network GUI not working

I'm trying to make an online fps game but the health bar is giving me the health of whoever I'm shooting at instead of my own player.

Part of my health code

function ApplyDamage (damage : float) { // We already have less than 0 hitpoints, maybe we got killed already? if (hitPoints <= 0.0) return;

 hitPoints -= damage;
 Healthtext = hitPoints.ToString();
 if (hitPoints &lt;= 0.0)
 {
     Detonate();
 }

}

function OnGUI () { if (networkView.isMine) { GUI.skin.font = MyFont; GUI.Label(Rect (135,506,900,900), Healthtext); } }

Comment

People who like this

0 Show 2
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 Bunny83 · Apr 23, 2011 at 10:15 PM 0
Share

Can you add the variable declaration of hitPoints and Healthtext? My guess is that's declared as static.. but it's just a guess. Also make sure that every player owns his own playerobject (everyone instantiate his own player). Some more information would be nice. If you check the health of all players in the inspector during game, are they set to the right values? Maybe add some Debug.Log messages to see when, who and on which player ApplyDamage is executed. With that little information i can't figure out any errors right now.

avatar image reid · Apr 23, 2011 at 11:55 PM 0
Share

hitpoints is public, healthtext is private. The hitpoints work correctly in game.

1 Reply

  • Sort: 
avatar image

Answer by burgunfaust · Apr 24, 2011 at 12:57 PM

Try this out:

GUI.Label(Rect (135,506,900,900), this.Healthtext);

Don't know if it will work, but it might.

Comment

People who like this

0 Show 0 · 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

Unity Answers is in Read-Only mode

Unity Answers content will be migrated to a new Community platform and we are aiming to launch a public beta by June 9. Please note, Unity Answers is now in read-only so we can prepare for the final data migration.

For more information and updates, please read our full announcement thread in the Unity Forum.

Follow this Question

Answers Answers and Comments

No one has followed this question yet.

Related Questions

How would you set up a Lobby Scene? 1 Answer

networkview + GUI 2 Answers

When online GUI.Label (or text area etc) shows overlapping text 2 Answers

Unexpected `MasterServerEvent.RegistrationSucceeded` on player connect/disconnect 1 Answer

Multiplayer reaction time game with no delay? 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