Unity 特殊文件夹 : 位置不能随便放

有以下几个文件夹:

Assets

用来存放资源的文件夹,包括各种材质.模型等

Editor

编辑器类等脚本

Editor Default Resources

Editor scripts can make use of asset files loaded on-demand using the?EditorGUIUtility.Load?function. This function will look for the asset files in a folder called?Editor Default Resources?which should be placed directly within the?Assets?folder.

Gizmos

Unity‘s "Gizmos" allow you to add graphics to the scene view to help visualise design details that are otherwise invisible. The?Gizmos.DrawIcon?function places an icon in the scene to act as a marker for a special object or position. The image file used to draw this icon must be placed in a folder called?Gizmos?in order to be located by the DrawIcon function.

Plugins

各种插件,包括C/C ++的本地插件,需要用到

[DllImport ("PluginName")]

private
static
extern
float FooPluginFunction ();

Resources

各种资源.模型.预设,可以用Resources.load()方法加载这些资源

Standard Assets and Pro Standard assets

When you import a standard asset package (menu:?Assets > Import Package) the assets are placed in a folder called?Standard Assets?or?Pro Standard Assets?if the package is available only with a Pro licence. As well as containing the assets, these folders also have an effect on script compilation order; see the page on?Special Folders and Script Compilation Order?for further details.

StreamingAssets

这个文件夹的东西被原封不动的拷贝到目标机器地方.通常放一些视频,或本地插件需要用到的资源

WebPlayerTemplates

For webplayer builds, Unity lets you supply a custom host page to deliver the player. The host page is supplied in the form of a?template?that can incorporate specific information from the project such as its name. These templates must be placed in a folder called?WebPlayerTemplates?to be available to Unity; see the page aboutUsing Web Player templates?for further details. It is also worth noting that any scripts placed in the WebPlayerTemplates folder will not be ignored by the compiler. Placing script files here can be a useful temporary way to stop them from being compiled, say if they contain incomplete code that will prevent the game running.

时间: 2024-10-13 07:28:36

Unity 特殊文件夹 : 位置不能随便放的相关文章

tomcat根目录设置 work文件夹位置 temp 文件夹位置

一.TOMCAT 设置TEMP文件夹位置 最近项目有用到freemarker,这样用户体验速度更快 但是问题来了,用freemarker,用nginx负载均衡都没有办法做,因为每次都要通过后台生成新的页面. 下午想了能否指定同样的temp文件夹位置,百度上面找了一下果然有. 方法如下 步骤1:找到tomcat文件夹下面的bin文件夹, 步骤2:编辑catalina.sh文件(LINUX系统版本的)或则catalina.bat文件(WINDOWS版本的) 步骤3:找到CATALINA_TMPDIR

SQL Server Replication的分发服务器的快照文件夹位置查找

原文:SQL Server Replication的分发服务器的快照文件夹位置查找 SQL Server分发服务器配置中,需要配置快照文件夹(Snapshot Folder),用于存储发布的数据和架构文件的工作目录,那么如何查找当前SQL Server数据库服务器的分发服务器的快照文件夹位置呢? 如果配置了具体发的发布和订阅,那么可以在对应的发布的属性->快照文件里面查看,如果还没有配置具体的发布和订阅,这个需要怎么查看呢? 今天恰巧遇到了这样的问题,研究了一下,其实这些值保存在表msdb.db

CI框架中自定义view文件夹位置

要想自定义view文件夹的位置,首先要了解CI框架时如何加载view文件夹的. CI中默认调用view的方法是: $this->load->view(); //这一行代码的原理是什么呢?请往下看: 我们打开application/core/Loader.php,里面有一个这样的方法: public function add_package_path($path, $view_cascade = TRUE) { $path = rtrim($path, '/').'/'; array_unshi

Unity各个文件夹的编译顺序

从.net转过来刚接触Unity的时候还是有很多不习惯的地方,对象实例化,namespace命名空间,构造函数等等,看的时候经常一头雾水,最近打算就一些日常看过的问题进行一下整理和解析.师傅说让看一下各个文件夹在编译过程中的执行顺序,网上查到一片文章看着还是可以,转一下. 大多数情况下,您可以选择任何你喜欢的文件夹在您的项目的名称,但Unity储备一些名称以指示内容有一个特殊的用途.这些文件夹中有些会影响脚本编译的顺序.从根本上说,有四个单独的脚本编译,将编译脚本的阶段由其父文件夹决定. 这是重

更改win7脱机文件夹位置

win7脱机文件夹,如何能移动到其它的分区? 有个关于windows7  Offline Files Folder的问题,win7脱机文件夹,如何能移动到其它的分区?默认是在系统盘的. 回答: 根据您的描述,我对这个问题的理解是如何把Windows 7的offline files folder移动到其他的分区. 默认情况下,offline files cache 的位置是在C:\windows\CSC文件夹下面,由于此文件是在C盘,如果文件文件数据比较大可能会对C盘系统盘影响,根据我的经验您可以

Unity创建文件夹的命名规则

Unity在创建场景后经常因为规范创建一些文件夹分别保存不同的东西: 其中的文件名分别代表的意思以及命名规范如下: Audios:表示的存储声音文件的文件夹Fonts:存储文字形式的文件夹Prefabs:存储预设体的文件夹Scenes:存储场景的文件夹Script或Code:存储脚本的文件夹Sprites:存储精灵(切图)的文件夹Effects:存储粒子特效的文件夹Resources:存储物体的文件夹Editor:允许其中的脚本访问Unity Editor的APITexture:存储纹理的文件夹

修改 jupyter notebook的默认文件夹位置

安装好Anaconda 3以后,就可以使用Jupyter notebook了,但是我们打开Jupyter notebook后,发现界面是一个默认的目录,这个目录在哪里?如果想把自己写的程序文件保存在自己新建的一个文件夹里,修改默认目录到自建的文件夹下,该如何做呢! 以下 先看一下Jupyter notebook的默认界面: 1. 首先要找到配置文件位置. 在开始菜单里找到并打开Anaconda Prompt,输入如下命令,然后执行. jupyter notebook --generate-con

Unity获取文件夹下指定类型的文件数量

有个文件夹里面有很多的图片,都是.png格式的,要是一个一个的拖到脚本上觉得很麻烦,就写了一个遍历添加的cars,变量是List<Sprite> 代码如下: using UnityEngine; using System.IO; using System.Collections.Generic; public class NewBehaviourScript : MonoBehaviour { private List<Texture> cars = new List<Tex

个人文件夹位置修改

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders 二个要一致,缺一不可. DOS之家的工具:v1.6 (主页)