Satoshi Tanaka
Satoshi Tanaka
Protocol was changed to QUIC-based one (see #114 ), but due to size limit of QUIC datagrams, it is not possible to send large field values such as mesh data....
One idea: - Specify material type (shading model?) using tag or `material` field - Use fields to specify parameters of particular material type (e.g. `diffuse`)
Should create ARGB type in IValue?
Alpha is specified by separate `alpha` field, rather than ARGB.
Sending blob is not slow. The problem is receiving. Possibly, the culprit is this busy wait. https://github.com/tana/Mondeto/blob/f87770b601650b6bf085546a82f9b45ba388e4fe/Assets/Scripts/Core/Connection.cs#L186-L196
Hybrid server: When stopped, CPU usage of Unity Editor suddenly increases and cannot close (closing window causes a freeze)
The above problem possibly depends on scene. Needs more investigation.
Thank you for reviewing my PR, but I don't think my code is wrong. Because of backward compatibility, `Mpu6050` should be alias of `Mpu6050`, which is for MPU-6050 sensors. If...
I think it is possible to handle the difference of 6886 and 6050 using traits, like ```rust trait Mpu6050Specific { ... } trait Mpu6886Specific { ... } impl Mpu6050Specific for...