x


How to state synchronize the rotation of one axis?

Hi there!

In my multiplayer game I want to synchronize a Character's rotation(with state synchronization), but only one axis.

I would like the receiver just to receive the rotation of the one specific axis (looking left/ right), whereas the sender can also look up/down.

The problem is, that I don't really know how to do so.^^ As said, I've only managed to sync the whole rotation... I'm also very confused with all the different types of rotation (Quaternion, eulerAngles, vector3(?)). .O

Here is the code I got to synchronize (in C#):

using UnityEngine; using System.Collections;

public class Synchrnization : MonoBehaviour { void OnSerializeNetworkView(BitStream stream, NetworkMessageInfo info) { if (networkView.isMine) { if (stream.isWriting) { Vector3 pos = transform.position; Quaternion rot = transform.rotation; stream.Serialize(ref pos); stream.Serialize(ref rot); } } else { if (!stream.isWriting) { Vector3 pos = Vector3.zero; Quaternion rot = Quaternion.identity; stream.Serialize(ref pos); stream.Serialize(ref rot); transform.position = pos; transform.rotation = rot; } } } }

/* I was wondering if any of you guys could help me out =). Any help would be appreciated. Thanks in advance */

more ▼

asked Apr 30 '11 at 07:29 PM

OpsicInstantPesic gravatar image

OpsicInstantPesic
1 1 1 1

(comments are locked)
10|3000 characters needed characters left

1 answer: sort oldest

Simply get the transform.eulerAngles.y (or x or z whatever you want) and put it in a float variable and then serialize it. when sending there is no problem. when receiving you should change the y rotation of the object to what you want and keep x and z with their previews values. the code would be something like this (the pother parts can be your own code).

float yRot;
void OnSerializeNetworkView (BitStream stream)
{
if (stream.isWriting)
{
float rot;
rot = yRot;
stream.Serialize (ref rot); //sending y axis rotation.
}
else
{
stream.Serialize (ref rot);
yRot = rot;
transform.rotation = Quaternion.Euler (transform.eulerAngles.x,yRot,transform.eulerAngles.z);
}
}

using quaternions is not easy so don't use them if you really don't know them the Quaternion.Euler method takes the rotation as x,y,z in eulerAngles (360 degree angles that we know well) and then returns a quaternion value that is the same rotation and you can set transform.rotation to it. i did not tested but transform.eulerAngles might be writable too.

more ▼

answered Apr 30 '11 at 08:06 PM

Ashkan_gc gravatar image

Ashkan_gc
9.3k 33 56 120

Thanks for your answer! I tried your solution, but instead of rotating the character was just moving in some kind of circle (moving, not rotating =O). i also tried to directly change the transform.eulerAngles but it doesn't seem to be writable. .O The console also told me i had to instatiate and assign the rot variable in the else brackets. so it looks like this

 float rot = 0; stream.Serialize(ref rot); yRot = rot;  hmm, i really don't know what to do =/
Apr 30 '11 at 08:42 PM OpsicInstantPesic
(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

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

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x2246
x714
x329
x58
x17

asked: Apr 30 '11 at 07:29 PM

Seen: 957 times

Last Updated: Apr 30 '11 at 07:29 PM