Beispiel #1
0
 public void RaiseOnHeightsDecoded(Region region, Surface surface)
 {
     ThreadManager.ExecuteOnMainThread(() => OnHeightsDecoded?.Invoke(region, surface));
 }
Beispiel #2
0
 public void RaiseOnHeightsDecoded(Region region, float[] heights, UInt32 size, float minHeight, float maxHeight)
 {
     ThreadManager.ExecuteOnMainThread(() => OnHeightsDecoded?.Invoke(region, heights, size, minHeight, maxHeight));
 }