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
1
Question by mwozniak93 · May 07, 2016 at 01:23 AM · 3dphotonrpc

Photon RPC called twice

Hello! I have a really strange issue - I simply try to call TakeDamage method with a rpc photon for unity, but it gets called two times( checked for three clients- also two times) So If Player get hit : 1. Collision is detected 2. TakeDamage --> Player loses hp 3. TakeDamage AGAIN - and player loses hp.

What could cause it?

     void OnTriggerEnter(Collider coll){
         Debug.Log ("COLL! : " + coll.name);
         if(coll.CompareTag(Consts.TagBullet)){
 //            DealDamage (2f, ctPhotonView.viewID);
             PhotonView photonView = this.photonView;
             photonView.RPC ("DealDamage", PhotonTargets.All, coll.GetComponent<BulletInitializer>().oBullet.Power,ctPhotonView.viewID);
     }
 }
 
     [PunRPC]
     public void DealDamage(float power, int playerId){
         health-=power;
         Debug.Log ("Hp : " + health + " player : " + name);
     }

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
2

Answer by tobiass · May 09, 2016 at 10:19 AM

Both of your players simulate the world. In best case, that means that both simulate the collision. If OnTriggerEnter is called on both clients, then both will send the RPC and execute it locally, too.

Make sure only one client is entitled to send the damage RPC. Maybe it's the hit one or maybe it's the one who shot. Both options have pros and cons.

Comment
Add comment · Show 2 · 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 mwozniak93 · May 09, 2016 at 09:09 PM 0
Share

Yep, really thanks for writing this. It helped me to look at my code from different point of view and I discovered what a silly mistake I made... Simply adding "if ctPhoton.is$$anonymous$$ine" in OnTriggerEnter helped. That was one of this mistakes which just happen from time to time and when you realize how obvious that was you cant believe you didn't see that...

avatar image muttsang · Oct 29, 2020 at 02:35 PM 0
Share

ah so this is the reason a bug in my project was occuring. Thank you so muuch @tobiass , your comment has saved my project!

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Update int value with photon rpc? 0 Answers

Photonview "this" does not exist in current context 1 Answer

Destroying the bullet over a photon network 4 Answers

Best Solution for Multiplayer Shooting 1 Answer

Accessing the different position of a game object with same tags 1 Answer


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