Преглед изворни кода

修正idgenerater的小问题 (#522)

位计算这里有点小问题。
doglikemakegame пре 2 година
родитељ
комит
86322c8208
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      Unity/Assets/Scripts/Core/World/Module/IdGenerater/IdGenerater.cs

+ 2 - 2
Unity/Assets/Scripts/Core/World/Module/IdGenerater/IdGenerater.cs

@@ -15,9 +15,9 @@ namespace ET
         {
             ulong result = 0;
             result |= (ushort) this.Process;
-            result <<= 14;
-            result |= this.Time;
             result <<= 30;
+            result |= this.Time;
+            result <<= 20;
             result |= this.Value;
             return (long) result;
         }