File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
com.unity.netcode.gameobjects/Runtime/Components/Interpolator Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,25 @@ public abstract class BufferedLinearInterpolator<T> where T : struct
1818 /// </summary>
1919 protected internal struct BufferedItem
2020 {
21+ /// <summary>
22+ /// THe item identifier
23+ /// </summary>
2124 public int ItemId ;
25+ /// <summary>
26+ /// The item value
27+ /// </summary>
2228 public T Item ;
29+ /// <summary>
30+ /// The time the item was sent.
31+ /// </summary>
2332 public double TimeSent ;
2433
34+ /// <summary>
35+ /// The constructor
36+ /// </summary>
37+ /// <param name="item">The item value.</param>
38+ /// <param name="timeSent">The time the item was sent.</param>
39+ /// <param name="itemId">The item identifier</param>
2540 public BufferedItem ( T item , double timeSent , int itemId )
2641 {
2742 Item = item ;
You can’t perform that action at this time.
0 commit comments