Application类
Posted SpringDragon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Application类相关的知识,希望对你有一定的参考价值。
using System.Collections; using System.Collections.Generic; using UnityEngine; using System.IO; using UnityEngine.SceneManagement; public class Scripts : MonoBehaviour { // Use this for initialization void Start () { // Application 应用程序 // 设置应用程序能否后台运行(更强调的是在手机端),是一个访问器 // Application.runInBackground = true; // 获取当前项目中的资源文件夹(Assets)路径 // 例如:需要获取资源文件夹中音频,视频,图片。。。 // C:\Users\luds\Desktop Windows--Dos // /Users/luds/Desktop Mac/Linux/Unix/... string path = Application.dataPath; Debug.Log (path); // 应用程序的工作路径 // 我们需要将程序中的某些内容进行持久化存储 string path2 = Application.persistentDataPath; Debug.Log (path2); } void Update() { if (Input.GetKeyDown (KeyCode.Space)) { string path = "/Users/luds/Desktop/"; string realPath = path + "screenshot" + ".png"; // 判断某个文件是否存在 if (File.Exists (realPath)) { int startIndex = 1; while (true) { realPath = path + "screenshot(" + (startIndex++) + ").png"; if (!File.Exists (realPath)) { break; } } } // 获取屏幕截图;参数为保存的路径 Application.CaptureScreenshot(realPath); } if (Input.GetKeyDown (KeyCode.Mouse0)) { // 在浏览器中打开一个链接 // URL: 统一资源定位符 // 协议://主机:端口/访问的文件路径?参数=参数值&参数=参数值 Application.OpenURL ("http://www.baidu.com"); } if (Input.GetKeyDown (KeyCode.Escape)) { // 退出应用程序 Application.Quit(); } if (Input.GetKeyDown (KeyCode.Tab)) { // 切换场景到Scence1 // using UnityEngine.SceneManagement; SceneManager.LoadScene("Scence1"); // 切换场景的时候一定要保证两个场景都被编译了 // 在 File - BuildSettinds - Add Open Scence } } }
以上是关于Application类的主要内容,如果未能解决你的问题,请参考以下文章
add application window with unknown token XXX Unable to add window;is your activity is running?(代码片段
C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段
如何通过单击片段内的线性布局从片段类开始新活动?下面是我的代码,但这不起作用
elasticsearch代码片段,及工具类SearchEsUtil.java
Android 逆向类加载器 ClassLoader ( 类加载器源码简介 | BaseDexClassLoader | DexClassLoader | PathClassLoader )(代码片段