예제 #1
0
 private float GetViewportRatio()
 {
     KZSize screenSize = new KZSize(
             Screen.width * targetViewportRect.width,
             Screen.height * targetViewportRect.height);
     return screenSize.width / screenSize.height;
 }
예제 #2
0
 public KZSize(KZSize that)
 {
     width = that.width;
     height = that.height;
 }