| @@ -0,0 +1,48 @@ | ||
| using UnityEngine; | ||
| using System.Collections; | ||
|
|
||
| public class PetBehaviour : MonoBehaviour { | ||
|
|
||
| public Transform target; | ||
| public float speed; | ||
| Transform player; | ||
|
|
||
| // Use this for initialization | ||
| void Start () { | ||
|
|
||
| } | ||
|
|
||
| // Update is called once per frame | ||
| void Update () { | ||
| if (player == null) | ||
| { | ||
| player = GameObject.FindGameObjectWithTag("Player").transform; | ||
| } | ||
| transform.position = Vector3.Lerp(transform.position, new Vector3(target.position.x, target.position.y, 0), speed * Time.deltaTime); | ||
|
|
||
| if (Vector3.Distance(transform.position, player.position) > 2) | ||
| { | ||
| transform.Rotate(Vector3.forward * -20); | ||
| } | ||
| else | ||
| { | ||
| transform.Rotate(Vector3.forward * 0); | ||
| } | ||
|
|
||
| //if (Vector3.Distance(transform.position, player.position) < 1 && Input.GetKeyDown(KeyCode.X)) | ||
| //{ | ||
| // for(int i = 360; i != 0; i -= 20) | ||
| // { | ||
| // transform.Rotate(Vector3.forward * -20); | ||
| // } | ||
| //} | ||
| if (transform.position.x < target.position.x) | ||
| { | ||
| transform.localScale = new Vector3(-1, 1, 1); | ||
| } | ||
| else | ||
| { | ||
| transform.localScale = new Vector3(1, 1, 1); | ||
| } | ||
| } | ||
| } |
| @@ -0,0 +1,60 @@ | ||
| using UnityEngine; | ||
| using System.Collections; | ||
|
|
||
| public class PetInteraction : MonoBehaviour { | ||
|
|
||
| // Use this for initialization | ||
| public string[] dialog; | ||
| public int[] epicness; | ||
| Transform player; | ||
| bool currentlyTalking = false; | ||
| bool firstInteractionDone = false; | ||
| int currentLine = 0; | ||
| UImanager playerUI; | ||
|
|
||
| void Start () { | ||
|
|
||
| } | ||
|
|
||
| // Update is called once per frame | ||
| void Update () { | ||
| if (player == null) | ||
| { | ||
| player = GameObject.FindGameObjectWithTag("Player").transform; | ||
| playerUI = player.GetComponent<UImanager>(); | ||
| } | ||
|
|
||
| if (Vector3.Distance(transform.position, player.position) < 2 && !firstInteractionDone) | ||
| { | ||
| firstInteractionDone = true; | ||
| ForcedConversation(); | ||
| } | ||
|
|
||
|
|
||
| if (Vector3.Distance(transform.position, player.position) > 3 && currentlyTalking == true) | ||
| { | ||
| currentlyTalking = false; | ||
| playerUI.DisplayDialog("", 0); | ||
| } | ||
| } | ||
| void ForcedConversation() | ||
| { | ||
| if (!currentlyTalking) | ||
| { | ||
| currentLine = 0; | ||
| } | ||
| if (currentLine < dialog.Length) | ||
| { | ||
| currentlyTalking = true; | ||
| playerUI.DisplayDialog(dialog[currentLine], epicness[currentLine]); | ||
|
|
||
| currentLine++; | ||
| } | ||
| else | ||
| { | ||
| playerUI.DisplayDialog("", 0); | ||
| firstInteractionDone = true; | ||
| currentlyTalking = false; | ||
| } | ||
| } | ||
| } |
| @@ -0,0 +1,68 @@ | ||
| using UnityEngine; | ||
| using System.Collections; | ||
|
|
||
| public abstract class SmoothMovementThing : MonoBehaviour { | ||
|
|
||
| public float moveTime = 0.1f; | ||
| public LayerMask blockingLayer; | ||
|
|
||
| private BoxCollider2D boxcollider; | ||
| private Rigidbody2D rb2D; | ||
| private float inverseMoveTime; | ||
|
|
||
| protected virtual void Start() | ||
| { | ||
| boxcollider = GetComponent<BoxCollider2D>(); | ||
| rb2D = GetComponent<Rigidbody2D>(); | ||
| inverseMoveTime = 1f / moveTime; | ||
|
|
||
| } | ||
|
|
||
| protected bool Move(int xDir, int yDir, out RaycastHit2D hit) | ||
| { | ||
| Vector2 start = transform.position; | ||
| Vector2 end = start + new Vector2(xDir, yDir); | ||
|
|
||
| boxcollider.enabled = false; | ||
| hit = Physics2D.Linecast(start, end, blockingLayer); | ||
| boxcollider.enabled = true; | ||
|
|
||
| if (hit.transform == null) | ||
| { | ||
| StartCoroutine(SmoothMovement(end)); | ||
| return true; | ||
| } | ||
| return false; | ||
| } | ||
|
|
||
| protected IEnumerator SmoothMovement(Vector3 end) | ||
| { | ||
| float sqrRemainingDistance = (transform.position - end).sqrMagnitude; | ||
|
|
||
| while (sqrRemainingDistance > float.Epsilon) | ||
| { | ||
| Vector3 newPosition = Vector3.MoveTowards(rb2D.position, end, inverseMoveTime * Time.deltaTime); | ||
| rb2D.MovePosition(newPosition); | ||
| sqrRemainingDistance = (transform.position - end).sqrMagnitude; | ||
| yield return null; | ||
| } | ||
| } | ||
|
|
||
| protected virtual void AttemptMove<T>(int xDir, int yDir) | ||
| where T : Component | ||
| { | ||
| RaycastHit2D hit; | ||
| bool canMove = Move(xDir, yDir, out hit); | ||
|
|
||
| if (hit.transform == null) | ||
| return; | ||
|
|
||
| T hitComponent = hit.transform.GetComponent<T>(); | ||
|
|
||
| if (!canMove && hitComponent != null) | ||
| OnCantMove(hitComponent); | ||
| } | ||
|
|
||
| protected abstract void OnCantMove<T>(T component) | ||
| where T : Component; | ||
| } |
| @@ -0,0 +1,40 @@ | ||
| using UnityEngine; | ||
| using System.Collections; | ||
| using UnityEngine.UI; | ||
|
|
||
| public class UImanager : MonoBehaviour { | ||
|
|
||
| // Use this for initialization | ||
| public Text dialogLine; | ||
| public GameObject panel; | ||
| void Start () { | ||
|
|
||
| } | ||
|
|
||
| // Update is called once per frame | ||
| void Update () { | ||
|
|
||
| } | ||
|
|
||
| public void DisplayDialog(string text, int epicness) | ||
| { | ||
| bool stopping = true; | ||
| if(epicness > 10) | ||
| { | ||
| stopping = false; | ||
| epicness -= 10; | ||
| } | ||
| if(text != "") | ||
| { | ||
| panel.SetActive(true); | ||
| dialogLine.text = text; | ||
| Camera.main.GetComponent<CameraEffects>().ScreenShake(epicness, stopping); | ||
| } | ||
| else | ||
| { | ||
| panel.SetActive(false); | ||
| dialogLine.text = ""; | ||
| Camera.main.GetComponent<CameraEffects>().ScreenShake(0, true); | ||
| } | ||
| } | ||
| } |
| @@ -0,0 +1,55 @@ | ||
| using UnityEngine; | ||
| using System.Collections; | ||
|
|
||
| public class npc : MonoBehaviour { | ||
|
|
||
| // Use this for initialization | ||
| public string[] dialog; | ||
| public int[] Epicness; | ||
| Transform player; | ||
| bool currentlyTalking = false; | ||
| int currentLine = 0; | ||
| UImanager playerUI; | ||
| void Start () { | ||
|
|
||
| } | ||
|
|
||
| // Update is called once per frame | ||
| void Update () { | ||
| if (player == null) | ||
| { | ||
| player = GameObject.FindGameObjectWithTag("Player").transform; | ||
| playerUI = player.GetComponent<UImanager>(); | ||
| } | ||
|
|
||
| if(Vector3.Distance(transform.position, player.position) < 2 && Input.GetKeyDown(KeyCode.Z)) | ||
| { | ||
| Interact(); | ||
| } | ||
|
|
||
| if (Vector3.Distance(transform.position, player.position) > 3 && currentlyTalking == true) | ||
| { | ||
| currentlyTalking = false; | ||
| playerUI.DisplayDialog("", 0); | ||
| } | ||
| } | ||
| void Interact() | ||
| { | ||
| if(!currentlyTalking) | ||
| { | ||
| currentLine = 0; | ||
| } | ||
| if (currentLine < dialog.Length) | ||
| { | ||
| currentlyTalking = true; | ||
| playerUI.DisplayDialog(dialog[currentLine], Epicness[currentLine]); | ||
|
|
||
| currentLine++; | ||
| } | ||
| else | ||
| { | ||
| playerUI.DisplayDialog("", 0); | ||
| currentlyTalking = false; | ||
| } | ||
| } | ||
| } |
| @@ -0,0 +1 @@ | ||
| 5;0;6;-1 |
| @@ -0,0 +1,4 @@ | ||
| sceneSetups: | ||
| - path: Assets/THETHING.unity | ||
| isLoaded: 1 | ||
| isActive: 1 |
| @@ -0,0 +1,2 @@ | ||
| unityRebuildLibraryVersion: 11 | ||
| unityForwardCompatibleVersion: 40 |
| @@ -0,0 +1,2 @@ | ||
| 0000.56a2b01c.0000 | ||
| 0000.56a2b038.0000 |
| @@ -0,0 +1,8 @@ | ||
| 5.3.1f1:2.1.0.0 | ||
| StandaloneWindows | ||
| C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll | ||
| C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll | ||
| C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll | ||
| C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll | ||
| C:/Program Files/Unity/Editor/Data/PlaybackEngines/iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll | ||
| C:/Program Files/Unity/Editor/Data/PlaybackEngines/iOSSupport\UnityEditor.iOS.Extensions.Common.dll |
| @@ -0,0 +1,5 @@ | ||
| Base path: C:/Program Files/Unity/Editor/Data | ||
| Cmd: getPlatforms | ||
| Unhandled exception: Protocol error - failed to read correct magic number | ||
|
|
||
| Quitting shader compiler process |
| @@ -0,0 +1,2 @@ | ||
| m_EditorVersion: 5.3.2f1 | ||
| m_StandardAssetsVersion: 0 |
| @@ -0,0 +1,80 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <PropertyGroup> | ||
| <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
| <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
| <ProductVersion>10.0.20506</ProductVersion> | ||
| <SchemaVersion>2.0</SchemaVersion> | ||
| <ProjectGuid>{15A49F7D-8DD3-8F8F-F923-057DD569B590}</ProjectGuid> | ||
| <OutputType>Library</OutputType> | ||
| <AssemblyName>Assembly-CSharp</AssemblyName> | ||
| <FileAlignment>512</FileAlignment> | ||
| <ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
| <TargetFrameworkIdentifier>.NETFramework</TargetFrameworkIdentifier> | ||
| <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> | ||
| <TargetFrameworkProfile>Unity Subset v3.5</TargetFrameworkProfile> | ||
| <CompilerResponseFile></CompilerResponseFile> | ||
| <UnityProjectType>Game:1</UnityProjectType> | ||
| <UnityBuildTarget>StandaloneWindows:5</UnityBuildTarget> | ||
| <UnityVersion>5.3.1f1</UnityVersion> | ||
| <RootNamespace></RootNamespace> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
| <DebugType>pdbonly</DebugType> | ||
| <Optimize>false</Optimize> | ||
| <OutputPath>Temp\UnityVS_bin\Debug\</OutputPath> | ||
| <IntermediateOutputPath>Temp\UnityVS_obj\Debug\</IntermediateOutputPath> | ||
| <ErrorReport>prompt</ErrorReport> | ||
| <WarningLevel>4</WarningLevel> | ||
| <DefineConstants>DEBUG;TRACE;UNITY_5_3_1;UNITY_5_3;UNITY_5;ENABLE_NEW_BUGREPORTER;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_FRAME_DEBUGGER;ENABLE_GENERICS;ENABLE_HOME_SCREEN;ENABLE_IMAGEEFFECTS;ENABLE_LIGHT_PROBES_LEGACY;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_PLUGIN_INSPECTOR;ENABLE_SHADOWS;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_SPRITE_POLYGON;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;INCLUDE_IL2CPP;INCLUDE_DIRECTX12;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_LOCALIZATION;ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION;ENABLE_EDITOR_TESTS_RUNNER;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_TEXTUREID_MAP;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_LOG_MIXED_STACKTRACE;ENABLE_UNITYWEBREQUEST;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN</DefineConstants> | ||
| <AllowUnsafeBlocks>false</AllowUnsafeBlocks> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
| <DebugType>pdbonly</DebugType> | ||
| <Optimize>false</Optimize> | ||
| <OutputPath>Temp\UnityVS_bin\Release\</OutputPath> | ||
| <IntermediateOutputPath>Temp\UnityVS_obj\Release\</IntermediateOutputPath> | ||
| <ErrorReport>prompt</ErrorReport> | ||
| <WarningLevel>4</WarningLevel> | ||
| <DefineConstants>TRACE;UNITY_5_3_1;UNITY_5_3;UNITY_5;ENABLE_NEW_BUGREPORTER;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_FRAME_DEBUGGER;ENABLE_GENERICS;ENABLE_HOME_SCREEN;ENABLE_IMAGEEFFECTS;ENABLE_LIGHT_PROBES_LEGACY;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_PLUGIN_INSPECTOR;ENABLE_SHADOWS;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_SPRITE_POLYGON;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;INCLUDE_IL2CPP;INCLUDE_DIRECTX12;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_LOCALIZATION;ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION;ENABLE_EDITOR_TESTS_RUNNER;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_TEXTUREID_MAP;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_LOG_MIXED_STACKTRACE;ENABLE_UNITYWEBREQUEST;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN</DefineConstants> | ||
| <AllowUnsafeBlocks>false</AllowUnsafeBlocks> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <Reference Include="mscorlib" /> | ||
| <Reference Include="System" /> | ||
| <Reference Include="System.XML" /> | ||
| <Reference Include="System.Core" /> | ||
| <Reference Include="Boo.Lang" /> | ||
| <Reference Include="UnityScript.Lang" /> | ||
| <Reference Include="System.Runtime.Serialization" /> | ||
| <Reference Include="System.Xml.Linq" /> | ||
| <Reference Include="UnityEngine"> | ||
| <HintPath>Library\UnityAssemblies\UnityEngine.dll</HintPath> | ||
| </Reference> | ||
| <Reference Include="UnityEngine.UI"> | ||
| <HintPath>Library\UnityAssemblies\UnityEngine.UI.dll</HintPath> | ||
| </Reference> | ||
| <Reference Include="UnityEngine.Networking"> | ||
| <HintPath>Library\UnityAssemblies\UnityEngine.Networking.dll</HintPath> | ||
| </Reference> | ||
| <Reference Include="UnityEditor"> | ||
| <HintPath>Library\UnityAssemblies\UnityEditor.dll</HintPath> | ||
| </Reference> | ||
| <Reference Include="UnityEditor.iOS.Extensions.Xcode"> | ||
| <HintPath>Library\UnityAssemblies\UnityEditor.iOS.Extensions.Xcode.dll</HintPath> | ||
| </Reference> | ||
| <Reference Include="UnityEditor.iOS.Extensions.Common"> | ||
| <HintPath>Library\UnityAssemblies\UnityEditor.iOS.Extensions.Common.dll</HintPath> | ||
| </Reference> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Compile Include="Assets\AMovementThingYes.cs" /> | ||
| <Compile Include="Assets\CameraEffects.cs" /> | ||
| <Compile Include="Assets\CameraMovement.cs" /> | ||
| <Compile Include="Assets\SmoothMovementThing.cs" /> | ||
| <Compile Include="Assets\UImanager.cs" /> | ||
| <Compile Include="Assets\npc.cs" /> | ||
| <Compile Include="Assets\spun.cs" /> | ||
| </ItemGroup> | ||
| <Import Project="$(MSBuildExtensionsPath)\SyntaxTree\UnityVS\2015\UnityVS.CSharp.targets" /> | ||
| </Project> |
| @@ -0,0 +1,20 @@ | ||
|
|
||
| Microsoft Visual Studio Solution File, Format Version 12.00 | ||
| # Visual Studio 2015 | ||
| Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Really fucking great Period.CSharp", "Really fucking great Period.CSharp.csproj", "{15A49F7D-8DD3-8F8F-F923-057DD569B590}" | ||
| EndProject | ||
| Global | ||
| GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
| Debug|Any CPU = Debug|Any CPU | ||
| Release|Any CPU = Release|Any CPU | ||
| EndGlobalSection | ||
| GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
| {15A49F7D-8DD3-8F8F-F923-057DD569B590}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
| {15A49F7D-8DD3-8F8F-F923-057DD569B590}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
| {15A49F7D-8DD3-8F8F-F923-057DD569B590}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
| {15A49F7D-8DD3-8F8F-F923-057DD569B590}.Release|Any CPU.Build.0 = Release|Any CPU | ||
| EndGlobalSection | ||
| GlobalSection(SolutionProperties) = preSolution | ||
| HideSolutionNode = FALSE | ||
| EndGlobalSection | ||
| EndGlobal |
| @@ -0,0 +1,23 @@ | ||
| Microsoft Visual Studio Solution File, Format Version 11.00 | ||
| # Visual Studio 2008 | ||
|
|
||
| Project("{B82B0461-E166-0554-B781-50B0CC7118D8}") = "SecretProject", "Assembly-CSharp.csproj", "{12C08890-4269-DF29-6949-6BB142E978F9}" | ||
| EndProject | ||
| Global | ||
| GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
| Debug|Any CPU = Debug|Any CPU | ||
| Release|Any CPU = Release|Any CPU | ||
| EndGlobalSection | ||
| GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
| {12C08890-4269-DF29-6949-6BB142E978F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
| {12C08890-4269-DF29-6949-6BB142E978F9}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
| {12C08890-4269-DF29-6949-6BB142E978F9}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
| {12C08890-4269-DF29-6949-6BB142E978F9}.Release|Any CPU.Build.0 = Release|Any CPU | ||
| EndGlobalSection | ||
| GlobalSection(SolutionProperties) = preSolution | ||
| HideSolutionNode = FALSE | ||
| EndGlobalSection | ||
| GlobalSection(MonoDevelopProperties) = preSolution | ||
| StartupItem = Assembly-CSharp.csproj | ||
| EndGlobalSection | ||
| EndGlobal |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,87 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,87 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,87 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,87 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,87 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,87 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,88 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/PetInteraction.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |
| @@ -0,0 +1,87 @@ | ||
| -debug | ||
| -target:library | ||
| -nowarn:0169 | ||
| -out:Temp/Assembly-CSharp.dll | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll" | ||
| -r:"C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll" | ||
| -define:UNITY_5_3_2 | ||
| -define:UNITY_5_3 | ||
| -define:UNITY_5 | ||
| -define:ENABLE_NEW_BUGREPORTER | ||
| -define:ENABLE_AUDIO | ||
| -define:ENABLE_CACHING | ||
| -define:ENABLE_CLOTH | ||
| -define:ENABLE_DUCK_TYPING | ||
| -define:ENABLE_FRAME_DEBUGGER | ||
| -define:ENABLE_GENERICS | ||
| -define:ENABLE_HOME_SCREEN | ||
| -define:ENABLE_IMAGEEFFECTS | ||
| -define:ENABLE_LIGHT_PROBES_LEGACY | ||
| -define:ENABLE_MICROPHONE | ||
| -define:ENABLE_MULTIPLE_DISPLAYS | ||
| -define:ENABLE_PHYSICS | ||
| -define:ENABLE_PLUGIN_INSPECTOR | ||
| -define:ENABLE_SHADOWS | ||
| -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING | ||
| -define:ENABLE_SPRITERENDERER_FLIPPING | ||
| -define:ENABLE_SPRITES | ||
| -define:ENABLE_SPRITE_POLYGON | ||
| -define:ENABLE_TERRAIN | ||
| -define:ENABLE_RAKNET | ||
| -define:ENABLE_UNET | ||
| -define:ENABLE_UNITYEVENTS | ||
| -define:ENABLE_VR | ||
| -define:ENABLE_WEBCAM | ||
| -define:ENABLE_WWW | ||
| -define:ENABLE_CLOUD_SERVICES | ||
| -define:ENABLE_CLOUD_SERVICES_ADS | ||
| -define:ENABLE_CLOUD_HUB | ||
| -define:ENABLE_CLOUD_PROJECT_ID | ||
| -define:ENABLE_CLOUD_SERVICES_PURCHASING | ||
| -define:ENABLE_CLOUD_SERVICES_ANALYTICS | ||
| -define:ENABLE_CLOUD_SERVICES_UNET | ||
| -define:ENABLE_CLOUD_SERVICES_BUILD | ||
| -define:ENABLE_CLOUD_LICENSE | ||
| -define:ENABLE_EDITOR_METRICS | ||
| -define:ENABLE_EDITOR_METRICS_CACHING | ||
| -define:INCLUDE_DYNAMIC_GI | ||
| -define:INCLUDE_GI | ||
| -define:INCLUDE_IL2CPP | ||
| -define:INCLUDE_DIRECTX12 | ||
| -define:PLATFORM_SUPPORTS_MONO | ||
| -define:RENDER_SOFTWARE_CURSOR | ||
| -define:ENABLE_LOCALIZATION | ||
| -define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION | ||
| -define:ENABLE_EDITOR_TESTS_RUNNER | ||
| -define:UNITY_STANDALONE_WIN | ||
| -define:UNITY_STANDALONE | ||
| -define:ENABLE_SUBSTANCE | ||
| -define:ENABLE_TEXTUREID_MAP | ||
| -define:ENABLE_RUNTIME_GI | ||
| -define:ENABLE_MOVIES | ||
| -define:ENABLE_NETWORK | ||
| -define:ENABLE_CRUNCH_TEXTURE_COMPRESSION | ||
| -define:ENABLE_LOG_MIXED_STACKTRACE | ||
| -define:ENABLE_UNITYWEBREQUEST | ||
| -define:ENABLE_EVENT_QUEUE | ||
| -define:ENABLE_CLUSTERINPUT | ||
| -define:ENABLE_WEBSOCKET_HOST | ||
| -define:ENABLE_MONO | ||
| -define:ENABLE_PROFILER | ||
| -define:DEBUG | ||
| -define:TRACE | ||
| -define:UNITY_ASSERTIONS | ||
| -define:UNITY_EDITOR | ||
| -define:UNITY_EDITOR_64 | ||
| -define:UNITY_EDITOR_WIN | ||
| Assets/AMovementThingYes.cs | ||
| Assets/CameraEffects.cs | ||
| Assets/CameraMovement.cs | ||
| Assets/PetBehaviour.cs | ||
| Assets/SmoothMovementThing.cs | ||
| Assets/UImanager.cs | ||
| Assets/npc.cs | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Runtime.Serialization.dll" | ||
| -r:"C:\Program Files\Unity\Editor\Data\Mono\lib\mono\unity\System.Xml.Linq.dll" |