GameData.cs 555 B

1234567891011
  1. /* 存放游戏运行中一些保存的数据
  2. */
  3. public static class GameData
  4. {
  5. public static string subScene; // 用于指定子场景用
  6. public static int focusDog = 0; // 游戏中目前玩家主要玩的狗
  7. public static int homeCamFocusDog = 100; // Home场景下,摄像机聚焦的狗。100表示不聚焦任何的狗
  8. public static string playedToy = string.Empty; // 用于暂存游戏中使用的玩具
  9. public static string bathItemId = string.Empty; // 用于暂存游戏中使用的玩具
  10. }