Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 11 Next capture
2021 2022 2023
1 capture
11 Jun 22 - 11 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 Slences · Jul 22, 2015 at 03:26 PM · collisionpositionphoton

Photon Network collision not accurate

I have Gameobjects (projectiles) that are instantiated from clients. These projectiles have not too much speed:

  transform.Translate(Vector3.forward * Time.deltaTime * 15);

Each projectile has a photon view that keeps track of the current position and rotation with the following code:

         transform.position = Vector3.Lerp(transform.position, realPosition, Time.deltaTime * 5);
         transform.rotation = Quaternion.Lerp(transform.rotation, realRotation, Time.deltaTime * 5);

My problem however is, each projectile has a OnCollisionEnter method which works fine, but the visuals aren't really well. On the client that has spawned the projectile, the projectile actually hits the other player, but for the other player the collision will trigger a lot before it actually hits which results in the other player thinking "Hey that didn't hit me!".

I assume this is because I'm not keeping track of the real position every frame, but how can I get closer to the real collision position without making the movement really jittery/laggy? How is this achieved in other games?

Thanks in advance!

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

Answer by alexi123454 · Jul 22, 2015 at 03:31 PM

Other games usually fake stuff like that, using a predicted trajectory for the projectile causing it to show up in the "real" place, even though that's not the position being received from the server.

An easy way to try getting the delay down is to increase the speed that you're Lerping at. The faster the lerp, the closer to the real position the bullet it. However, of course, the faster the lerp the more likely it is to jitter when receiving new positions from the server.

If you want to take the "fake" approach, you could make the bullet move a little faster than it normally does to compensate for the lag between the clients. Or, you could check at what time the bullet was fired, and then spawn the bullet a little ahead of where it was actually fired, depending on how far it should have moved since that time.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

How to get the relative position of a Collider with OnControllerColliderHit()? 2 Answers

how to make my enemy stop walking? 1 Answer

Moving object with transform.position ignore other objects even if they collided 1 Answer

how to click on some position and get response on other position? 1 Answer

Detecting Collision points of particles? 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