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 TheDawisch · Aug 20, 2014 at 05:52 AM · networkinterpolation

Initial position of an object with interpolation

So I have a basic interpolation system setup for my multiplayer shooter that looks like this:

 private void SyncedMovement()
 {
      syncTime += Time.deltaTime;
      transform.position = Vector3.Lerp (syncStartPosition, syncEndPosition, syncTime / syncDelay);
 
      rigidbody.rotation = Quaternion.Euler (Vector3.Slerp (syncStartRotation, syncEndRotation, syncTime / syncDelay));
 }

 private float lastSynchronizationTime = 0f;
 private float syncDelay = 0f;
 private float syncTime = 0f;
 private Vector3 syncStartPosition = Vector3.zero;
 private Vector3 syncStartRotation = Vector3.zero;
 private Vector3 syncEndPosition = Vector3.zero;
 private Vector3 syncEndRotation = Vector3.zero;
 
 void OnSerializeNetworkView(BitStream stream, NetworkMessageInfo info)
 {
 
     Vector3 syncPosition = Vector3.zero;
     Vector3 syncRotation = Vector3.zero;
 
     if (stream.isWriting)
     {
         syncRotation = rigidbody.rotation.eulerAngles;
         syncPosition = rigidbody.position;
 
         stream.Serialize (ref syncPosition);
         stream.Serialize (ref syncRotation);
     }
     else
     {
         stream.Serialize (ref syncPosition);
         stream.Serialize(ref syncRotation);
 
         syncTime = 0f;
         syncDelay = Time.time -  lastSynchronizationTime;
         lastSynchronizationTime = Time.time;
 
         rigidbody.rotation = Quaternion.Euler (syncRotation);
 
         syncEndPosition = syncPosition;
         syncStartPosition = rigidbody.position;
         syncEndRotation = syncRotation;
         syncStartRotation = rigidbody.rotation.eulerAngles;
     }
 }


My problem is: When a new player connects, the player who was already in the server will "interpolate" from 0,0,0 to his his proper location. So the player who just connected will see him fly through the air in a straight line (super fast) from 0,0,0 to his proper location. Is there any way to make the first player appear immediately at their proper location when a second player connects?

I hope that makes sense, it's a little hard to word it so others can understand.

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
0

Answer by DBar · Aug 20, 2014 at 06:17 AM

Can you disable de mesh renderer on the first player character until the second player connect?

Im not into Photon this days but i believe the API exposes that type of data.

Comment
Add comment · Show 1 · 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 TheDawisch · Aug 20, 2014 at 08:06 AM 0
Share

I could disable the $$anonymous$$esh renderer, that's actually a decent idea that I hadn't thought of.

I'm actually using UnityNetworking not Photon. Thanks!

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

NetworkInterpolatedTransform to Photon Unity Networking 0 Answers

Can't seem to pull timestamp from networkmessageinfo in OnSerializeNetworkView 1 Answer

Unity Networking. Player flickers. 0 Answers

sync tags through network? 0 Answers

Unity Multiplayer errors?! 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