zoukankan      html  css  js  c++  java
  • Unity3d command line arguments

    Options

    Many of these relate to Unity3d command line arguments

      • Batch Mode - should be left enabled usually, enables the Unity -batchmode
      • No graphics - on Windows only, do not initialize a graphics device during a build to avoid errors when running without a good GPU. Equivalent to -nographics command line option
      • Project path - specifies the path (relative to Working directory) of Unity project to open
      • Build Player - choose which Unity Player to build, currently supported are Web, Windows or OSX (but it would be easy to add others if required). Equivalent to passing -buildWebPlayer -buildWindowsPlayer or -buildOSXPlayer on command line
      • Execute method - specify a method for Unity to execute, to allow you to customise your build process. Equivalent to -executeMethod on the command line
      • Build path - specify the output build path for the Player
      • Clear output before - ensures output folder exists and is empty, before invoking Unity
      • Clean output after - removes any .svn and .meta files found in the output directory, as these are usually not wanted
      • Quit - specify if unity should quit after a build. Usually should be left enabled, equivalent to the -quit command line option
  • 相关阅读:
    通用分页后台显示
    自定义的JSP标签
    Java反射机制
    Java虚拟机栈---本地方法栈
    XML建模实列
    XML解析与xml和Map集合的互转
    [离散数学]第二次作业
    [线性代数]2016.10.13作业
    [数字逻辑]第二次作业
    [线性代数]2016.9.26作业
  • 原文地址:https://www.cnblogs.com/cnsoft/p/3447896.html
Copyright © 2011-2022 走看看