从多个来源访问变量

发布于 2024-08-27 02:16:37 字数 336 浏览 4 评论 0 原文

我正在创建我的第一个游戏,目前我已经设置了一个“GameState”类,用于在内部存储玩家的健康状况等。该类当前是从 AppDelegate 实例化的,因为我需要从整个游戏中访问它。

这很好。对于我正在使用的每个类,我可以访问应用程序委托,然后找到 GameState 对象...但是,它看起来非常混乱。我很想找到一种方法(我仍然是新手)将 GameState 实例定义为某种全局变量,以便我可以轻松地从各处访问它......但是我对变量的一点阅读范围让我对这样做感到不安,即使我知道如何做。

关于定义和访问此类的最佳方式有什么想法吗?它将用于从玩家健康状况到他们发现的物品、任何个性化设置等所有内容。

谢谢!

I'm creating my first game, and I've currently set up a 'GameState' class, to store player health etc. inside. This class is currently instantiated from the AppDelegate as I need to access it from all over my game.

This is fine. For each class I'm working in, I can access the app delegate, and then find the GameState object... however, it seems very messy. I'm tempted to find a way (I'm still a newbie) to define the GameState instance as being some sort of global variable so that I can access it from all over with ease... but my little bit of reading on variable scope makes me uneasy about doing this, even if I knew how.

Any ideas of the best way to define and access this class? It'll be used for everything from player health, to items they've found, any personalisation etc.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流心雨 2024-09-03 02:16:37

您也许可以使用 singleton

You could perhaps use a singleton.

流年里的时光 2024-09-03 02:16:37

也许 关键-值观察通知是更好的选择。

Perhaps Key-Value Observing or Notifications are a better choice.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文