Unity3D圣典3.3版本-中文版
文集大纲加载中……
本文档使用 MrDoc 发布
-
+
首页
Resources 资源
# Resources 资源 The Resources class allows you to Find and Load Objects by their path name. Resources 类允许你按照它们的路径名查找并加载物体。 All assets that are in a folder named "Resources" anywhere in the Assets folder can be accessed via the [Resources.Load](Resources.Load.html) functions. 所有位于 Assets 文件夹下名为"Resources"的文件夹中的资源,都可以 Resources.Load 函数访问。 In Unity you usually don't use path names to access assets, instead you expose a reference to an asset by declaring a member-variable, and then assign it in the inspector. When using this technique Unity can automatically calculate which assets are used when building a player. This radically minimizes the size of your players to the assets that you actually use in the built game. When you place assets in the "Resources" folder this can not be done, thus all assets in the "Resources" folder will be included in a build. 在 Unity 中通常不需要使用路径名来访问资源,相反你可以通过声明一个成员变量来暴露一个资源的引用,然后在检视面板中指定它。使用这个技巧的时候 Unity 可以在构建的时候自动计算哪个资源被使用。这从根本上最大限度地减少了实际用于游戏的资源的尺寸。当你放资源在"Resources"文件夹中时这个不会这么做,因此所有在"Resources"文件夹中的资源都将被包含在游戏中。 Another disadvantage of using path names is that it leads to less reusable code since scripts will have specific hard coded requirements on where the used assets are placed. On the other hand using references that are exposed in the inspector are self-documenting and immediately obvious to the user of your script. 另一个使用路径名的缺点是,缺乏可重用性,因为脚本对于使用的资源具有硬编码要求。另一方面使用暴露在检视面板中的资源引用,是自文档化的,对于使用脚本的用户来说也是立竿见影的。 However there are situations where it is more convenient to fetch an asset by its name instead of linking to it in the inspector. Essentially whenever it is inconvenient to assign the reference to the object in the inspector. For example you might want to create a game object procedurally from a script and for example assign a texture to a procedurally generated mesh. 然而,有些情况下按照名称而不是在检视面板中取回一个资源是更方便的,尤其是当在检视面板中指定引用是不方便的时候。例如你或许想从脚本创建一个游戏物体,为程序生成的网格赋值一个纹理。 ``` var go = new GameObject.CreatePrimitive(PrimitiveType.Plane); go.renderer.material.mainTexture = Resources.Load("glass"); ``` ### Class Functions**类函数** * [FindObjectsOfTypeAll](Resources.FindObjectsOfTypeAll.html) Returns a list of all objects of Type type. 返回 Type 类型的所有物体的一个列表。 * [Load](Resources.Load.html) Loads an asset stored at path in the Resources folder. 加载储存在 Resources 文件夹中 path 处的资源。 * [LoadAll](Resources.LoadAll.html) Loads all assets in a folder or file at path in the Resources folder. 加载 Resources 文件夹中的 path 文件夹或者文件中的所有资源。 * [LoadAssetAtPath](Resources.LoadAssetAtPath.html) Returns a resource at an asset path (Editor Only). 返回所在资源路径上的一个资源(编辑器仅仅)。 * [UnloadUnusedAssets](Resources.UnloadUnusedAssets.html) Unloads assets that are not used. 卸载未使用的资源。
da
2022年5月23日 14:32
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
关于 MrDoc
觅思文档MrDoc
是
州的先生
开发并开源的在线文档系统,其适合作为个人和小型团队的云笔记、文档和知识库管理工具。
如果觅思文档给你或你的团队带来了帮助,欢迎对作者进行一些打赏捐助,这将有力支持作者持续投入精力更新和维护觅思文档,感谢你的捐助!
>>>捐助鸣谢列表
微信
支付宝
QQ
PayPal
Markdown文件
分享
链接
类型
密码
更新密码