From dfbd56f6b0eb26e88ca93af938da9668a9489d19 Mon Sep 17 00:00:00 2001 From: Muhammad Rizki Fonna <13516001@std.stei.itb.ac.id> Date: Sat, 28 Mar 2020 20:54:56 +0700 Subject: [PATCH] Add jump, run, slide animation, fix collider --- .../Assembly-CSharp.csproj | 633 ++++++++++++++++++ .../Assets/Animation/CharDeadAnim.anim | 95 +++ .../Assets/Animation/CharDeadAnim.anim.meta | 8 + .../Assets/Animation/CharJumpAnim.anim | 95 +++ .../Assets/Animation/CharJumpAnim.anim.meta | 8 + .../Assets/Animation/CharRunAnim.anim | 95 +++ .../Assets/Animation/CharRunAnim.anim.meta | 8 + .../Assets/Animation/CharSlideAnim.anim | 95 +++ .../Assets/Animation/CharSlideAnim.anim.meta | 8 + .../Assets/Animation/Dead__009.controller | 72 ++ .../Animation/Dead__009.controller.meta | 8 + .../Assets/Animation/Idle__000.controller | 128 +++- .../Animation/Idle__000.controller.meta | 2 +- .../Assets/Animation/Jump__006.controller | 72 ++ .../Animation/Jump__006.controller.meta | 8 + .../Assets/Animation/Run__004.controller | 72 ++ .../Assets/Animation/Run__004.controller.meta | 8 + .../Assets/Animation/Slide__000.controller | 72 ++ .../Animation/Slide__000.controller.meta | 8 + .../Assets/PlayerCtr.cs | 19 + .../Assets/PlayerCtr.cs.meta | 11 + .../Assets/Scenes/Main.unity | 25 +- .../Library/CurrentLayout.dwlt | 240 ++++--- .../ScriptAssemblies/Assembly-CSharp.dll | Bin 0 -> 3584 bytes .../ScriptAssemblies/Assembly-CSharp.pdb | Bin 0 -> 684 bytes .../SceneView/7a5f7d-mainStage.json | 2 +- .../Library/assetDatabase3 | Bin 6468912 -> 6471680 bytes .../Library/expandedItems | Bin 4320 -> 4308 bytes .../09/0997581727b001a479e7fa17295910ab | Bin 0 -> 4244 bytes .../09/0997581727b001a479e7fa17295910ab.info | Bin 0 -> 617 bytes .../166dd97b0d7122c4b87f56e372e74c20} | Bin 4244 -> 4244 bytes .../16/166dd97b0d7122c4b87f56e372e74c20.info | Bin 0 -> 617 bytes .../23/23ac26e028512c64d879d04eaee81963 | Bin 0 -> 4244 bytes .../23/23ac26e028512c64d879d04eaee81963.info | Bin 0 -> 617 bytes .../31/318059f5db6ac734b8c5bcc1c722fcd4 | Bin 0 -> 4244 bytes .../31/318059f5db6ac734b8c5bcc1c722fcd4.info | Bin 0 -> 615 bytes .../74/74ef1dde6bbb98342b13fb0f7fa328e3 | Bin 0 -> 4244 bytes .../74/74ef1dde6bbb98342b13fb0f7fa328e3.info | Bin 0 -> 615 bytes .../81/814e3e546751dcf4199ea4cd19230ec6 | Bin 0 -> 4244 bytes .../81/814e3e546751dcf4199ea4cd19230ec6.info | Bin 0 -> 619 bytes .../87/8702a31c3ca4b254bba5e15554fd1c0a | Bin 0 -> 4244 bytes .../87/8702a31c3ca4b254bba5e15554fd1c0a.info | Bin 0 -> 617 bytes .../87/872a5996bb7c1994bae9aef75a2c42ec | Bin 0 -> 4676 bytes .../87/872a5996bb7c1994bae9aef75a2c42ec.info | Bin 0 -> 631 bytes .../b4/b43726a3c26a16543b3d30ba4ab424c8 | Bin 0 -> 4672 bytes .../b4/b43726a3c26a16543b3d30ba4ab424c8.info | Bin 0 -> 610 bytes .../dd/ddd2057527d4ffd48869b78312281dd9 | Bin 0 -> 4244 bytes .../ddd2057527d4ffd48869b78312281dd9.info} | Bin 617 -> 617 bytes .../e7/e70322318525340469eb10d62df4231d | Bin 0 -> 4244 bytes .../e7/e70322318525340469eb10d62df4231d.info | Bin 0 -> 619 bytes ...hadercompiler-UnityShaderCompiler.exe0.log | 9 - .../Tugas2_PBD_MRizkiFonna_13516001_rev.sln | 23 + 52 files changed, 1699 insertions(+), 125 deletions(-) create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assembly-CSharp.csproj create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharDeadAnim.anim create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharDeadAnim.anim.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharJumpAnim.anim create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharJumpAnim.anim.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharRunAnim.anim create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharRunAnim.anim.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharSlideAnim.anim create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharSlideAnim.anim.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Dead__009.controller create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Dead__009.controller.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Jump__006.controller create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Jump__006.controller.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Run__004.controller create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Run__004.controller.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Slide__000.controller create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Slide__000.controller.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/PlayerCtr.cs create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/PlayerCtr.cs.meta create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Assembly-CSharp.dll create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Assembly-CSharp.pdb create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/09/0997581727b001a479e7fa17295910ab create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/09/0997581727b001a479e7fa17295910ab.info rename Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/{57/5715fd6bb762be247b584111258ba125 => 16/166dd97b0d7122c4b87f56e372e74c20} (98%) create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/16/166dd97b0d7122c4b87f56e372e74c20.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/23/23ac26e028512c64d879d04eaee81963 create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/23/23ac26e028512c64d879d04eaee81963.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/31/318059f5db6ac734b8c5bcc1c722fcd4 create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/31/318059f5db6ac734b8c5bcc1c722fcd4.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/74/74ef1dde6bbb98342b13fb0f7fa328e3 create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/74/74ef1dde6bbb98342b13fb0f7fa328e3.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/81/814e3e546751dcf4199ea4cd19230ec6 create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/81/814e3e546751dcf4199ea4cd19230ec6.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/8702a31c3ca4b254bba5e15554fd1c0a create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/8702a31c3ca4b254bba5e15554fd1c0a.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/872a5996bb7c1994bae9aef75a2c42ec create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/872a5996bb7c1994bae9aef75a2c42ec.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/b4/b43726a3c26a16543b3d30ba4ab424c8 create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/b4/b43726a3c26a16543b3d30ba4ab424c8.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/dd/ddd2057527d4ffd48869b78312281dd9 rename Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/{57/5715fd6bb762be247b584111258ba125.info => dd/ddd2057527d4ffd48869b78312281dd9.info} (93%) create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/e7/e70322318525340469eb10d62df4231d create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/e7/e70322318525340469eb10d62df4231d.info create mode 100644 Tugas2_PBD_MRizkiFonna_13516001_rev/Tugas2_PBD_MRizkiFonna_13516001_rev.sln diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assembly-CSharp.csproj b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assembly-CSharp.csproj new file mode 100644 index 00000000..2870bff8 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assembly-CSharp.csproj @@ -0,0 +1,633 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <LangVersion>latest</LangVersion> + </PropertyGroup> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProductVersion>10.0.20506</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <RootNamespace></RootNamespace> + <ProjectGuid>{30A6BE1D-D50D-1E39-B42D-298B05672701}</ProjectGuid> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <AssemblyName>Assembly-CSharp</AssemblyName> + <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + <BaseDirectory>.</BaseDirectory> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>Temp\bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2018_4_19;UNITY_2018_4;UNITY_2018;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITES;ENABLE_GRID;ENABLE_TILEMAP;ENABLE_TERRAIN;ENABLE_TEXTURE_STREAMING;ENABLE_DIRECTOR;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_TIMELINE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;INCLUDE_DYNAMIC_GI;INCLUDE_GI;ENABLE_MONO_BDWGC;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_VIDEO;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_LOCALIZATION;PLATFORM_STANDALONE_WIN;PLATFORM_STANDALONE;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_EVENT_QUEUE;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_AR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + <NoWarn>0169</NoWarn> + <AllowUnsafeBlocks>False</AllowUnsafeBlocks> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>Temp\bin\Release\</OutputPath> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + <NoWarn>0169</NoWarn> + <AllowUnsafeBlocks>False</AllowUnsafeBlocks> + </PropertyGroup> + <PropertyGroup> + <NoConfig>true</NoConfig> + <NoStdLib>true</NoStdLib> + <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences> + <ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades> + <ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades> + </PropertyGroup> + <ItemGroup> + <Reference Include="UnityEngine"> + <HintPath>C:\Program Files\Unity\Hub\Editor\2018.4.19f1\Editor\Data\Managed/UnityEngine/UnityEngine.dll</HintPath> + </Reference> + <Reference Include="UnityEditor"> + <HintPath>C:\Program Files\Unity\Hub\Editor\2018.4.19f1\Editor\Data\Managed/UnityEditor.dll</HintPath> + </Reference> + </ItemGroup> + <ItemGroup> + <Compile Include="Assets\PlayerController.cs" /> + <Compile Include="Assets\PlayerCtr.cs" /> + <None Include="Assets\BayatGames\Free Platform Game Assets\Readme.txt" /> + <Reference Include="Unity.TextMeshPro.Editor"> + <HintPath>E:/Tubes2_PBD/if3210-2020-unity-13516001/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath> + </Reference> + <Reference Include="Unity.PackageManagerUI.Editor"> + <HintPath>E:/Tubes2_PBD/if3210-2020-unity-13516001/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll</HintPath> + </Reference> + <Reference Include="Unity.CollabProxy.Editor"> + <HintPath>E:/Tubes2_PBD/if3210-2020-unity-13516001/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll</HintPath> + </Reference> + <Reference Include="Unity.TextMeshPro"> + <HintPath>E:/Tubes2_PBD/if3210-2020-unity-13516001/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath> + </Reference> + <Reference Include="Unity.Analytics.DataPrivacy"> + <HintPath>E:/Tubes2_PBD/if3210-2020-unity-13516001/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.AIModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.ARModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.AccessibilityModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.AnimationModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.AssetBundleModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.AudioModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.BaselibModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.BaselibModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.ClothModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.ClusterInputModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.ClusterRendererModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.CoreModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.CrashReportingModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.DirectorModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.FileSystemHttpModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.FileSystemHttpModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.GameCenterModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.GridModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.HotReloadModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.IMGUIModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.ImageConversionModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.InputModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.JSONSerializeModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.LocalizationModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.ParticleSystemModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.PerformanceReportingModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.PhysicsModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.Physics2DModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.ProfilerModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.ScreenCaptureModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.SharedInternalsModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.SpriteMaskModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.SpriteShapeModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.StreamingModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.StyleSheetsModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.StyleSheetsModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.SubstanceModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.TLSModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.TerrainModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.TerrainPhysicsModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.TextCoreModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.TextRenderingModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.TilemapModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.TimelineModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.TimelineModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UIModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UIElementsModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UNETModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UmbraModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UnityAnalyticsModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UnityConnectModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UnityTestProtocolModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UnityWebRequestModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UnityWebRequestAssetBundleModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UnityWebRequestAudioModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UnityWebRequestTextureModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UnityWebRequestWWWModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.VFXModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.VRModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.VehiclesModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.VideoModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.WindModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.XRModule"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll</HintPath> + </Reference> + <Reference Include="Unity.Locator"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/Managed/Unity.Locator.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.UI"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.TestRunner"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/UnityExtensions/Unity/TestRunner/UnityEngine.TestRunner.dll</HintPath> + </Reference> + <Reference Include="nunit.framework"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/UnityExtensions/Unity/TestRunner/net35/unity-custom/nunit.framework.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.Timeline"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/UnityExtensions/Unity/Timeline/RuntimeEditor/UnityEngine.Timeline.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.Networking"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.GoogleAudioSpatializer"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/UnityExtensions/Unity/UnityGoogleAudioSpatializer/RuntimeEditor/UnityEngine.GoogleAudioSpatializer.dll</HintPath> + </Reference> + <Reference Include="UnityEngine.SpatialTracking"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/UnityExtensions/Unity/UnitySpatialTracking/RuntimeEditor/UnityEngine.SpatialTracking.dll</HintPath> + </Reference> + <Reference Include="Unity.Analytics.StandardEvents"> + <HintPath>E:/Tubes2_PBD/if3210-2020-unity-13516001/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/PackageCache/com.unity.analytics@3.2.3/AnalyticsStandardEvents/Unity.Analytics.StandardEvents.dll</HintPath> + </Reference> + <Reference Include="netstandard"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Win32.Primitives"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll</HintPath> + </Reference> + <Reference Include="System.AppContext"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll</HintPath> + </Reference> + <Reference Include="System.Collections.Concurrent"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll</HintPath> + </Reference> + <Reference Include="System.Collections"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll</HintPath> + </Reference> + <Reference Include="System.Collections.NonGeneric"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll</HintPath> + </Reference> + <Reference Include="System.Collections.Specialized"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll</HintPath> + </Reference> + <Reference Include="System.ComponentModel"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll</HintPath> + </Reference> + <Reference Include="System.ComponentModel.EventBasedAsync"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll</HintPath> + </Reference> + <Reference Include="System.ComponentModel.Primitives"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll</HintPath> + </Reference> + <Reference Include="System.ComponentModel.TypeConverter"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll</HintPath> + </Reference> + <Reference Include="System.Console"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll</HintPath> + </Reference> + <Reference Include="System.Data.Common"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.Contracts"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.Debug"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.FileVersionInfo"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.Process"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.StackTrace"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.TextWriterTraceListener"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.Tools"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.TraceSource"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll</HintPath> + </Reference> + <Reference Include="System.Diagnostics.Tracing"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll</HintPath> + </Reference> + <Reference Include="System.Drawing.Primitives"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll</HintPath> + </Reference> + <Reference Include="System.Dynamic.Runtime"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll</HintPath> + </Reference> + <Reference Include="System.Globalization.Calendars"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll</HintPath> + </Reference> + <Reference Include="System.Globalization"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll</HintPath> + </Reference> + <Reference Include="System.Globalization.Extensions"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll</HintPath> + </Reference> + <Reference Include="System.IO.Compression"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll</HintPath> + </Reference> + <Reference Include="System.IO.Compression.ZipFile"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll</HintPath> + </Reference> + <Reference Include="System.IO"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll</HintPath> + </Reference> + <Reference Include="System.IO.FileSystem"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll</HintPath> + </Reference> + <Reference Include="System.IO.FileSystem.DriveInfo"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll</HintPath> + </Reference> + <Reference Include="System.IO.FileSystem.Primitives"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll</HintPath> + </Reference> + <Reference Include="System.IO.FileSystem.Watcher"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll</HintPath> + </Reference> + <Reference Include="System.IO.IsolatedStorage"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll</HintPath> + </Reference> + <Reference Include="System.IO.MemoryMappedFiles"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll</HintPath> + </Reference> + <Reference Include="System.IO.Pipes"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll</HintPath> + </Reference> + <Reference Include="System.IO.UnmanagedMemoryStream"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll</HintPath> + </Reference> + <Reference Include="System.Linq"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll</HintPath> + </Reference> + <Reference Include="System.Linq.Expressions"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll</HintPath> + </Reference> + <Reference Include="System.Linq.Parallel"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll</HintPath> + </Reference> + <Reference Include="System.Linq.Queryable"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll</HintPath> + </Reference> + <Reference Include="System.Net.Http"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll</HintPath> + </Reference> + <Reference Include="System.Net.NameResolution"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll</HintPath> + </Reference> + <Reference Include="System.Net.NetworkInformation"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll</HintPath> + </Reference> + <Reference Include="System.Net.Ping"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll</HintPath> + </Reference> + <Reference Include="System.Net.Primitives"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll</HintPath> + </Reference> + <Reference Include="System.Net.Requests"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll</HintPath> + </Reference> + <Reference Include="System.Net.Security"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll</HintPath> + </Reference> + <Reference Include="System.Net.Sockets"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll</HintPath> + </Reference> + <Reference Include="System.Net.WebHeaderCollection"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll</HintPath> + </Reference> + <Reference Include="System.Net.WebSockets.Client"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll</HintPath> + </Reference> + <Reference Include="System.Net.WebSockets"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll</HintPath> + </Reference> + <Reference Include="System.ObjectModel"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll</HintPath> + </Reference> + <Reference Include="System.Reflection"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll</HintPath> + </Reference> + <Reference Include="System.Reflection.Extensions"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll</HintPath> + </Reference> + <Reference Include="System.Reflection.Primitives"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll</HintPath> + </Reference> + <Reference Include="System.Resources.Reader"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll</HintPath> + </Reference> + <Reference Include="System.Resources.ResourceManager"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll</HintPath> + </Reference> + <Reference Include="System.Resources.Writer"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.CompilerServices.VisualC"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll</HintPath> + </Reference> + <Reference Include="System.Runtime"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.Extensions"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.Handles"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.InteropServices"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.InteropServices.RuntimeInformation"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.Numerics"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.Serialization.Formatters"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.Serialization.Json"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.Serialization.Primitives"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.Serialization.Xml"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll</HintPath> + </Reference> + <Reference Include="System.Security.Claims"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll</HintPath> + </Reference> + <Reference Include="System.Security.Cryptography.Algorithms"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll</HintPath> + </Reference> + <Reference Include="System.Security.Cryptography.Csp"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll</HintPath> + </Reference> + <Reference Include="System.Security.Cryptography.Encoding"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll</HintPath> + </Reference> + <Reference Include="System.Security.Cryptography.Primitives"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll</HintPath> + </Reference> + <Reference Include="System.Security.Cryptography.X509Certificates"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll</HintPath> + </Reference> + <Reference Include="System.Security.Principal"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll</HintPath> + </Reference> + <Reference Include="System.Security.SecureString"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll</HintPath> + </Reference> + <Reference Include="System.Text.Encoding"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll</HintPath> + </Reference> + <Reference Include="System.Text.Encoding.Extensions"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll</HintPath> + </Reference> + <Reference Include="System.Text.RegularExpressions"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll</HintPath> + </Reference> + <Reference Include="System.Threading"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll</HintPath> + </Reference> + <Reference Include="System.Threading.Overlapped"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll</HintPath> + </Reference> + <Reference Include="System.Threading.Tasks"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll</HintPath> + </Reference> + <Reference Include="System.Threading.Tasks.Parallel"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll</HintPath> + </Reference> + <Reference Include="System.Threading.Thread"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll</HintPath> + </Reference> + <Reference Include="System.Threading.ThreadPool"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll</HintPath> + </Reference> + <Reference Include="System.Threading.Timer"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll</HintPath> + </Reference> + <Reference Include="System.ValueTuple"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll</HintPath> + </Reference> + <Reference Include="System.Xml.ReaderWriter"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll</HintPath> + </Reference> + <Reference Include="System.Xml.XDocument"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll</HintPath> + </Reference> + <Reference Include="System.Xml.XmlDocument"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll</HintPath> + </Reference> + <Reference Include="System.Xml.XmlSerializer"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll</HintPath> + </Reference> + <Reference Include="System.Xml.XPath"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll</HintPath> + </Reference> + <Reference Include="System.Xml.XPath.XDocument"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll</HintPath> + </Reference> + <Reference Include="System.Numerics.Vectors"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.InteropServices.WindowsRuntime"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll</HintPath> + </Reference> + <Reference Include="mscorlib"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll</HintPath> + </Reference> + <Reference Include="System.ComponentModel.Composition"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll</HintPath> + </Reference> + <Reference Include="System.Core"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll</HintPath> + </Reference> + <Reference Include="System.Data"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll</HintPath> + </Reference> + <Reference Include="System"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll</HintPath> + </Reference> + <Reference Include="System.Drawing"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll</HintPath> + </Reference> + <Reference Include="System.IO.Compression.FileSystem"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll</HintPath> + </Reference> + <Reference Include="System.Net"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll</HintPath> + </Reference> + <Reference Include="System.Numerics"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll</HintPath> + </Reference> + <Reference Include="System.Runtime.Serialization"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll</HintPath> + </Reference> + <Reference Include="System.ServiceModel.Web"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll</HintPath> + </Reference> + <Reference Include="System.Transactions"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll</HintPath> + </Reference> + <Reference Include="System.Web"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll</HintPath> + </Reference> + <Reference Include="System.Windows"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll</HintPath> + </Reference> + <Reference Include="System.Xml"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll</HintPath> + </Reference> + <Reference Include="System.Xml.Linq"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll</HintPath> + </Reference> + <Reference Include="System.Xml.Serialization"> + <HintPath>C:/Program Files/Unity/Hub/Editor/2018.4.19f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll</HintPath> + </Reference> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <!-- To modify your build process, add your task inside one of the targets below and uncomment it. + Other similar extension points exist, see Microsoft.Common.targets. + <Target Name="BeforeBuild"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> + +</Project> diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharDeadAnim.anim b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharDeadAnim.anim new file mode 100644 index 00000000..ee8cda42 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharDeadAnim.anim @@ -0,0 +1,95 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharDeadAnim + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 21300000, guid: 759714a8bb67c7e4cabd7b4014e2aeb7, type: 3} + - time: 0.083333336 + value: {fileID: 21300000, guid: a42f018f0788d3a40aed5e39ebbe1caf, type: 3} + - time: 0.16666667 + value: {fileID: 21300000, guid: 1f856d3d735024648a0fd45b47059362, type: 3} + - time: 0.25 + value: {fileID: 21300000, guid: 2c83de8faec2cdb45b89d9feaf955826, type: 3} + - time: 0.33333334 + value: {fileID: 21300000, guid: 609a0a44868ba0746ac7465ca16258bd, type: 3} + - time: 0.41666666 + value: {fileID: 21300000, guid: b488f507aeb9a9d4a8d080be825f9b97, type: 3} + - time: 0.5 + value: {fileID: 21300000, guid: 228eefaf189a2cf4faf7b9f5d7eb29a3, type: 3} + - time: 0.5833333 + value: {fileID: 21300000, guid: b6815efda1326fe45b1c55c05d04dea6, type: 3} + - time: 0.6666667 + value: {fileID: 21300000, guid: 2d2dbaa94bc52cd4cb79e2f98641149b, type: 3} + - time: 0.75 + value: {fileID: 21300000, guid: 982345f296c26754f90d8de5f01f477b, type: 3} + attribute: m_Sprite + path: + classID: 212 + script: {fileID: 0} + m_SampleRate: 12 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 0 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 21300000, guid: 759714a8bb67c7e4cabd7b4014e2aeb7, type: 3} + - {fileID: 21300000, guid: a42f018f0788d3a40aed5e39ebbe1caf, type: 3} + - {fileID: 21300000, guid: 1f856d3d735024648a0fd45b47059362, type: 3} + - {fileID: 21300000, guid: 2c83de8faec2cdb45b89d9feaf955826, type: 3} + - {fileID: 21300000, guid: 609a0a44868ba0746ac7465ca16258bd, type: 3} + - {fileID: 21300000, guid: b488f507aeb9a9d4a8d080be825f9b97, type: 3} + - {fileID: 21300000, guid: 228eefaf189a2cf4faf7b9f5d7eb29a3, type: 3} + - {fileID: 21300000, guid: b6815efda1326fe45b1c55c05d04dea6, type: 3} + - {fileID: 21300000, guid: 2d2dbaa94bc52cd4cb79e2f98641149b, type: 3} + - {fileID: 21300000, guid: 982345f296c26754f90d8de5f01f477b, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.8333333 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 1 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharDeadAnim.anim.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharDeadAnim.anim.meta new file mode 100644 index 00000000..7181cd2a --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharDeadAnim.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8702a31c3ca4b254bba5e15554fd1c0a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharJumpAnim.anim b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharJumpAnim.anim new file mode 100644 index 00000000..8300b87c --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharJumpAnim.anim @@ -0,0 +1,95 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharJumpAnim + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 21300000, guid: 5b96c28a5812584409f62960a08f6411, type: 3} + - time: 0.083333336 + value: {fileID: 21300000, guid: 545a20e1900e7d146a81963070d66c02, type: 3} + - time: 0.16666667 + value: {fileID: 21300000, guid: cfcb33f9670ae1e4a80f29ccfad62da2, type: 3} + - time: 0.25 + value: {fileID: 21300000, guid: 7a96a1a8bf42a4e4ea7c0e337a96aa5a, type: 3} + - time: 0.33333334 + value: {fileID: 21300000, guid: 1eb25b5737989b54ea0e8150a7a370f8, type: 3} + - time: 0.41666666 + value: {fileID: 21300000, guid: 3c06d2e69e63a0f4da0e8a49fa0a8d22, type: 3} + - time: 0.5 + value: {fileID: 21300000, guid: 0e38efc1bf8d80f4b96e26feaf38d74d, type: 3} + - time: 0.5833333 + value: {fileID: 21300000, guid: 8b49da1d3002ba84bb96d32925a7267e, type: 3} + - time: 0.6666667 + value: {fileID: 21300000, guid: 2e6001062b88f5b4eb0f6973ba44b38a, type: 3} + - time: 0.75 + value: {fileID: 21300000, guid: 3fb0470b30d548f45beeea7c3e4e60d0, type: 3} + attribute: m_Sprite + path: + classID: 212 + script: {fileID: 0} + m_SampleRate: 12 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 0 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 21300000, guid: 5b96c28a5812584409f62960a08f6411, type: 3} + - {fileID: 21300000, guid: 545a20e1900e7d146a81963070d66c02, type: 3} + - {fileID: 21300000, guid: cfcb33f9670ae1e4a80f29ccfad62da2, type: 3} + - {fileID: 21300000, guid: 7a96a1a8bf42a4e4ea7c0e337a96aa5a, type: 3} + - {fileID: 21300000, guid: 1eb25b5737989b54ea0e8150a7a370f8, type: 3} + - {fileID: 21300000, guid: 3c06d2e69e63a0f4da0e8a49fa0a8d22, type: 3} + - {fileID: 21300000, guid: 0e38efc1bf8d80f4b96e26feaf38d74d, type: 3} + - {fileID: 21300000, guid: 8b49da1d3002ba84bb96d32925a7267e, type: 3} + - {fileID: 21300000, guid: 2e6001062b88f5b4eb0f6973ba44b38a, type: 3} + - {fileID: 21300000, guid: 3fb0470b30d548f45beeea7c3e4e60d0, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.8333333 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 1 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharJumpAnim.anim.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharJumpAnim.anim.meta new file mode 100644 index 00000000..9811ffcd --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharJumpAnim.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0997581727b001a479e7fa17295910ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharRunAnim.anim b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharRunAnim.anim new file mode 100644 index 00000000..514769dd --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharRunAnim.anim @@ -0,0 +1,95 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharRunAnim + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 21300000, guid: dc77f25a6cde4c342b1d7f95e0b55e2b, type: 3} + - time: 0.083333336 + value: {fileID: 21300000, guid: e8e86fdedace464448a996b60e9c3200, type: 3} + - time: 0.16666667 + value: {fileID: 21300000, guid: 866461a6247166a4387f816edfe3848f, type: 3} + - time: 0.25 + value: {fileID: 21300000, guid: 354bb89743d461d4a8c6badbc087677a, type: 3} + - time: 0.33333334 + value: {fileID: 21300000, guid: 718ae3612a885d1479ccc1cd59efc6fc, type: 3} + - time: 0.41666666 + value: {fileID: 21300000, guid: fed4d234815efe246af2adee8635e12f, type: 3} + - time: 0.5 + value: {fileID: 21300000, guid: 347921b4cd7b3b64b90dffa94ebf21b9, type: 3} + - time: 0.5833333 + value: {fileID: 21300000, guid: 278b23d93cae72443b48adc070b4b40f, type: 3} + - time: 0.6666667 + value: {fileID: 21300000, guid: d6b232bfe5e34ae4da1413583acfff7d, type: 3} + - time: 0.75 + value: {fileID: 21300000, guid: ad78cd6889d44764f827decdb6cce6f7, type: 3} + attribute: m_Sprite + path: + classID: 212 + script: {fileID: 0} + m_SampleRate: 12 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 0 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 21300000, guid: dc77f25a6cde4c342b1d7f95e0b55e2b, type: 3} + - {fileID: 21300000, guid: e8e86fdedace464448a996b60e9c3200, type: 3} + - {fileID: 21300000, guid: 866461a6247166a4387f816edfe3848f, type: 3} + - {fileID: 21300000, guid: 354bb89743d461d4a8c6badbc087677a, type: 3} + - {fileID: 21300000, guid: 718ae3612a885d1479ccc1cd59efc6fc, type: 3} + - {fileID: 21300000, guid: fed4d234815efe246af2adee8635e12f, type: 3} + - {fileID: 21300000, guid: 347921b4cd7b3b64b90dffa94ebf21b9, type: 3} + - {fileID: 21300000, guid: 278b23d93cae72443b48adc070b4b40f, type: 3} + - {fileID: 21300000, guid: d6b232bfe5e34ae4da1413583acfff7d, type: 3} + - {fileID: 21300000, guid: ad78cd6889d44764f827decdb6cce6f7, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.8333333 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 1 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharRunAnim.anim.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharRunAnim.anim.meta new file mode 100644 index 00000000..d73aff3f --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharRunAnim.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 318059f5db6ac734b8c5bcc1c722fcd4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharSlideAnim.anim b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharSlideAnim.anim new file mode 100644 index 00000000..1e59c1b4 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharSlideAnim.anim @@ -0,0 +1,95 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharSlideAnim + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: + - curve: + - time: 0 + value: {fileID: 21300000, guid: 475ace13b9837584c8c96355f030016b, type: 3} + - time: 0.083333336 + value: {fileID: 21300000, guid: 7b88642d2ee55bf478dfa4265cedae7a, type: 3} + - time: 0.16666667 + value: {fileID: 21300000, guid: b34f4b2772d08674e8a9d10028a772a4, type: 3} + - time: 0.25 + value: {fileID: 21300000, guid: b346160704155e44bad99b0ee4d5163f, type: 3} + - time: 0.33333334 + value: {fileID: 21300000, guid: 8363924bd95536641acb2a400c1438bb, type: 3} + - time: 0.41666666 + value: {fileID: 21300000, guid: 51ec702a8b312fc409b5293d929677e1, type: 3} + - time: 0.5 + value: {fileID: 21300000, guid: 01ca1374f3afb994b9849c4a35c06e69, type: 3} + - time: 0.5833333 + value: {fileID: 21300000, guid: b3459e2ff33b60a4ab3797260086f45e, type: 3} + - time: 0.6666667 + value: {fileID: 21300000, guid: e753357f3eb1bd3469f6481a84ba1aa1, type: 3} + - time: 0.75 + value: {fileID: 21300000, guid: ffcdf6ec684322b4298251ab20395231, type: 3} + attribute: m_Sprite + path: + classID: 212 + script: {fileID: 0} + m_SampleRate: 12 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 0 + attribute: 0 + script: {fileID: 0} + typeID: 212 + customType: 23 + isPPtrCurve: 1 + pptrCurveMapping: + - {fileID: 21300000, guid: 475ace13b9837584c8c96355f030016b, type: 3} + - {fileID: 21300000, guid: 7b88642d2ee55bf478dfa4265cedae7a, type: 3} + - {fileID: 21300000, guid: b34f4b2772d08674e8a9d10028a772a4, type: 3} + - {fileID: 21300000, guid: b346160704155e44bad99b0ee4d5163f, type: 3} + - {fileID: 21300000, guid: 8363924bd95536641acb2a400c1438bb, type: 3} + - {fileID: 21300000, guid: 51ec702a8b312fc409b5293d929677e1, type: 3} + - {fileID: 21300000, guid: 01ca1374f3afb994b9849c4a35c06e69, type: 3} + - {fileID: 21300000, guid: b3459e2ff33b60a4ab3797260086f45e, type: 3} + - {fileID: 21300000, guid: e753357f3eb1bd3469f6481a84ba1aa1, type: 3} + - {fileID: 21300000, guid: ffcdf6ec684322b4298251ab20395231, type: 3} + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.8333333 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 1 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharSlideAnim.anim.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharSlideAnim.anim.meta new file mode 100644 index 00000000..be846018 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/CharSlideAnim.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 814e3e546751dcf4199ea4cd19230ec6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Dead__009.controller b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Dead__009.controller new file mode 100644 index 00000000..eee7b760 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Dead__009.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Dead__009 + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107472805405888518} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &1102956433305110028 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharDeadAnim + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 8702a31c3ca4b254bba5e15554fd1c0a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107472805405888518 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102956433305110028} + m_Position: {x: 200, y: 0, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102956433305110028} diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Dead__009.controller.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Dead__009.controller.meta new file mode 100644 index 00000000..ad3bfb25 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Dead__009.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 166dd97b0d7122c4b87f56e372e74c20 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Idle__000.controller b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Idle__000.controller index 95153b1d..4121361a 100644 --- a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Idle__000.controller +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Idle__000.controller @@ -12,7 +12,7 @@ AnimatorController: m_AnimatorLayers: - serializedVersion: 5 m_Name: Base Layer - m_StateMachine: {fileID: 1107128083135661562} + m_StateMachine: {fileID: 1107063412808862894} m_Mask: {fileID: 0} m_Motions: [] m_Behaviours: [] @@ -22,7 +22,111 @@ AnimatorController: m_IKPass: 0 m_SyncedLayerAffectsTiming: 0 m_Controller: {fileID: 9100000} ---- !u!1102 &1102424416150557230 +--- !u!1102 &1102273859264746002 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharDeadAnim + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 8702a31c3ca4b254bba5e15554fd1c0a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102553803812327096 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharRunAnim + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 318059f5db6ac734b8c5bcc1c722fcd4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102711351798131996 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharSlideAnim + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 814e3e546751dcf4199ea4cd19230ec6, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102725168272293592 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharJumpAnim + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 0997581727b001a479e7fa17295910ab, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102859251263908352 AnimatorState: serializedVersion: 5 m_ObjectHideFlags: 1 @@ -48,7 +152,7 @@ AnimatorState: m_MirrorParameter: m_CycleOffsetParameter: m_TimeParameter: ---- !u!1107 &1107128083135661562 +--- !u!1107 &1107063412808862894 AnimatorStateMachine: serializedVersion: 5 m_ObjectHideFlags: 1 @@ -58,8 +162,20 @@ AnimatorStateMachine: m_Name: Base Layer m_ChildStates: - serializedVersion: 1 - m_State: {fileID: 1102424416150557230} - m_Position: {x: 200, y: 0, z: 0} + m_State: {fileID: 1102859251263908352} + m_Position: {x: 240, y: 0, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1102273859264746002} + m_Position: {x: 240, y: 60, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1102725168272293592} + m_Position: {x: 240, y: 132, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1102553803812327096} + m_Position: {x: 240, y: 204, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1102711351798131996} + m_Position: {x: 240, y: 276, z: 0} m_ChildStateMachines: [] m_AnyStateTransitions: [] m_EntryTransitions: [] @@ -69,4 +185,4 @@ AnimatorStateMachine: m_EntryPosition: {x: 50, y: 120, z: 0} m_ExitPosition: {x: 800, y: 120, z: 0} m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} - m_DefaultState: {fileID: 1102424416150557230} + m_DefaultState: {fileID: 1102859251263908352} diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Idle__000.controller.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Idle__000.controller.meta index 41e2b9cd..bf73a4eb 100644 --- a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Idle__000.controller.meta +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Idle__000.controller.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5715fd6bb762be247b584111258ba125 +guid: ddd2057527d4ffd48869b78312281dd9 NativeFormatImporter: externalObjects: {} mainObjectFileID: 9100000 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Jump__006.controller b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Jump__006.controller new file mode 100644 index 00000000..521eef69 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Jump__006.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jump__006 + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107411572567367172} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &1102148124292582672 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharJumpAnim + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 0997581727b001a479e7fa17295910ab, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107411572567367172 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102148124292582672} + m_Position: {x: 200, y: 0, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102148124292582672} diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Jump__006.controller.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Jump__006.controller.meta new file mode 100644 index 00000000..93d5e9c0 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Jump__006.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23ac26e028512c64d879d04eaee81963 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Run__004.controller b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Run__004.controller new file mode 100644 index 00000000..7398518e --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Run__004.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run__004 + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107713567201404408} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &1102348730379732390 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharRunAnim + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 318059f5db6ac734b8c5bcc1c722fcd4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107713567201404408 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102348730379732390} + m_Position: {x: 200, y: 0, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102348730379732390} diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Run__004.controller.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Run__004.controller.meta new file mode 100644 index 00000000..f2a13cba --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Run__004.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 74ef1dde6bbb98342b13fb0f7fa328e3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Slide__000.controller b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Slide__000.controller new file mode 100644 index 00000000..f37e2014 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Slide__000.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Slide__000 + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107347464599679504} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &1102877205919339608 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CharSlideAnim + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 814e3e546751dcf4199ea4cd19230ec6, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107347464599679504 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102877205919339608} + m_Position: {x: 200, y: 0, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102877205919339608} diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Slide__000.controller.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Slide__000.controller.meta new file mode 100644 index 00000000..0699e3ac --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Animation/Slide__000.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e70322318525340469eb10d62df4231d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/PlayerCtr.cs b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/PlayerCtr.cs new file mode 100644 index 00000000..56f047d5 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/PlayerCtr.cs @@ -0,0 +1,19 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class PlayerCtr : MonoBehaviour +{ + Animator anim; + // Start is called before the first frame update + void Start() + { + + } + + // Update is called once per frame + void Update() + { + + } +} diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/PlayerCtr.cs.meta b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/PlayerCtr.cs.meta new file mode 100644 index 00000000..0b1ebb43 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/PlayerCtr.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b43726a3c26a16543b3d30ba4ab424c8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Scenes/Main.unity b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Scenes/Main.unity index 4776298d..1a68218c 100644 --- a/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Scenes/Main.unity +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Assets/Scenes/Main.unity @@ -300,7 +300,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 804047947} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.472, y: -0.505, z: 0} + m_LocalPosition: {x: -2.53, y: -0.505, z: 0} m_LocalScale: {x: 1.03, y: 0.874, z: 1} m_Children: [] m_Father: {fileID: 1427275635} @@ -621,7 +621,7 @@ BoxCollider2D: m_IsTrigger: 0 m_UsedByEffector: 0 m_UsedByComposite: 0 - m_Offset: {x: 5.1750937, y: -3.1968107} + m_Offset: {x: 1.1329932, y: -3.1968107} m_SpriteTilingProperty: border: {x: 0, y: 0, z: 0, w: 0} pivot: {x: 0, y: 0} @@ -632,7 +632,7 @@ BoxCollider2D: adaptiveTiling: 0 m_AutoTiling: 0 serializedVersion: 2 - m_Size: {x: 24.58827, y: 4.544839} + m_Size: {x: 32.672474, y: 4.544839} m_EdgeRadius: 0 --- !u!1 &1041565893 GameObject: @@ -647,6 +647,7 @@ GameObject: - component: {fileID: 1041565896} - component: {fileID: 1041565895} - component: {fileID: 1041565894} + - component: {fileID: 1041565899} m_Layer: 0 m_Name: Idle__000 m_TagString: Untagged @@ -699,7 +700,7 @@ Rigidbody2D: m_Material: {fileID: 0} m_Interpolate: 0 m_SleepingMode: 1 - m_CollisionDetection: 0 + m_CollisionDetection: 1 m_Constraints: 0 --- !u!95 &1041565896 Animator: @@ -711,7 +712,7 @@ Animator: m_GameObject: {fileID: 1041565893} m_Enabled: 1 m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: 5715fd6bb762be247b584111258ba125, type: 2} + m_Controller: {fileID: 9100000, guid: ddd2057527d4ffd48869b78312281dd9, type: 2} m_CullingMode: 0 m_UpdateMode: 0 m_ApplyRootMotion: 0 @@ -776,12 +777,24 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1041565893} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -1.13, y: 2.569, z: 0} + m_LocalPosition: {x: -11.98, y: 2.68, z: 0} m_LocalScale: {x: 0.905, y: 0.888, z: 1} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1041565899 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1041565893} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b43726a3c26a16543b3d30ba4ab424c8, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &1427275633 GameObject: m_ObjectHideFlags: 0 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/CurrentLayout.dwlt b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/CurrentLayout.dwlt index 776beb96..b4258f71 100644 --- a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/CurrentLayout.dwlt +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/CurrentLayout.dwlt @@ -21,7 +21,7 @@ MonoBehaviour: m_ShowMode: 4 m_Title: m_RootView: {fileID: 6} - m_MinSize: {x: 950, y: 524} + m_MinSize: {x: 950, y: 300} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 1 --- !u!114 &2 @@ -40,9 +40,9 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 361 - width: 274 - height: 274 + y: 354 + width: 331 + height: 281 m_MinSize: {x: 232, y: 274} m_MaxSize: {x: 10002, y: 10024} m_ActualView: {fileID: 21} @@ -69,12 +69,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 274 + width: 331 height: 635 - m_MinSize: {x: 232, y: 474} - m_MaxSize: {x: 10002, y: 14024} + m_MinSize: {x: 232, y: 498} + m_MaxSize: {x: 10002, y: 14048} vertical: 1 - controlID: 339 + controlID: 46 --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -92,10 +92,10 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 274 - height: 361 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} + width: 331 + height: 354 + m_MinSize: {x: 202, y: 224} + m_MaxSize: {x: 4002, y: 4024} m_ActualView: {fileID: 20} m_Panes: - {fileID: 20} @@ -116,9 +116,9 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 987 + x: 970 y: 0 - width: 379 + width: 396 height: 635 m_MinSize: {x: 277, y: 74} m_MaxSize: {x: 4002, y: 4024} @@ -198,10 +198,10 @@ MonoBehaviour: y: 30 width: 1366 height: 635 - m_MinSize: {x: 957, y: 474} - m_MaxSize: {x: 22012, y: 14024} + m_MinSize: {x: 957, y: 498} + m_MaxSize: {x: 22012, y: 14048} vertical: 0 - controlID: 77 + controlID: 17 --- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 @@ -240,14 +240,14 @@ MonoBehaviour: - {fileID: 13} m_Position: serializedVersion: 2 - x: 274 + x: 331 y: 0 - width: 447 + width: 291 height: 635 - m_MinSize: {x: 204, y: 424} - m_MaxSize: {x: 4004, y: 8024} + m_MinSize: {x: 204, y: 448} + m_MaxSize: {x: 4004, y: 8048} vertical: 1 - controlID: 110 + controlID: 18 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -263,15 +263,15 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 721 + x: 622 y: 0 - width: 266 + width: 348 height: 635 m_MinSize: {x: 244, y: 224} m_MaxSize: {x: 4004, y: 4024} - m_ActualView: {fileID: 14} + m_ActualView: {fileID: 15} m_Panes: - - {fileID: 14} + - {fileID: 15} m_Selected: 0 m_LastSelected: 0 --- !u!114 &12 @@ -291,14 +291,14 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 447 + width: 291 height: 366 m_MinSize: {x: 204, y: 224} m_MaxSize: {x: 4004, y: 4024} m_ActualView: {fileID: 23} m_Panes: - {fileID: 23} - - {fileID: 16} + - {fileID: 14} m_Selected: 0 m_LastSelected: 1 --- !u!114 &13 @@ -318,14 +318,14 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 366 - width: 447 + width: 291 height: 269 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} + m_MinSize: {x: 204, y: 224} + m_MaxSize: {x: 4004, y: 4024} m_ActualView: {fileID: 22} m_Panes: - {fileID: 22} - - {fileID: 15} + - {fileID: 16} m_Selected: 0 m_LastSelected: 1 --- !u!114 &14 @@ -337,28 +337,61 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 12390, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12914, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 240, y: 200} + m_MinSize: {x: 100, y: 100} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Tile Palette - m_Image: {fileID: 0} + m_Text: Animator + m_Image: {fileID: 663490763026382308, guid: 0000000000000000d000000000000000, + type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 721 + x: 274 y: 73 - width: 262 - height: 615 + width: 567 + height: 346 m_PersistentViewDataDictionary: {fileID: 0} - m_PreviewResizer: - m_CachedPref: 50 - m_ControlHash: 1964396721 - m_PrefName: Preview_TilemapBrushInspector - m_Palette: {fileID: 7848978867158949353, guid: b579597ee3159344d86ffe3bc688e161, - type: 3} + m_ViewTransforms: + m_KeySerializationHelper: + - {fileID: 1107063412808862894, guid: ddd2057527d4ffd48869b78312281dd9, type: 2} + m_ValueSerializationHelper: + - e00: 0.50831896 + e01: 0 + e02: 0 + e03: 88.50259 + e10: 0 + e11: 0.50831896 + e12: 0 + e13: 98.82788 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_PreviewAnimator: {fileID: 0} + m_AnimatorController: {fileID: 9100000, guid: ddd2057527d4ffd48869b78312281dd9, + type: 2} + m_BreadCrumbs: + - m_Target: {fileID: 1107063412808862894, guid: ddd2057527d4ffd48869b78312281dd9, + type: 2} + m_ScrollPosition: {x: 0, y: 0} + stateMachineGraph: {fileID: 0} + stateMachineGraphGUI: {fileID: 0} + blendTreeGraph: {fileID: 0} + blendTreeGraphGUI: {fileID: 0} + m_AutoLiveLink: 1 + m_MiniTool: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentEditor: 0 + m_LayerEditor: + m_SelectedLayerIndex: 0 --- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 @@ -368,26 +401,28 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 12071, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12390, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} + m_MinSize: {x: 240, y: 200} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Animation - m_Image: {fileID: 1561878555887300916, guid: 0000000000000000d000000000000000, - type: 0} + m_Text: Tile Palette + m_Image: {fileID: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 484 - width: 629 - height: 204 + x: 622 + y: 73 + width: 344 + height: 615 m_PersistentViewDataDictionary: {fileID: 0} - m_LockTracker: - m_IsLocked: 0 - m_LastSelectedObjectID: -26500 + m_PreviewResizer: + m_CachedPref: 50 + m_ControlHash: 1964396721 + m_PrefName: Preview_TilemapBrushInspector + m_Palette: {fileID: 7848978867158949353, guid: b579597ee3159344d86ffe3bc688e161, + type: 3} --- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 @@ -397,23 +432,26 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 12111, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12071, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 400, y: 100} - m_MaxSize: {x: 2048, y: 2048} + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Asset Store - m_Image: {fileID: 357073275683767465, guid: 0000000000000000d000000000000000, + m_Text: Animation + m_Image: {fileID: 1561878555887300916, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 73 - width: 629 - height: 391 + x: 274 + y: 439 + width: 567 + height: 249 m_PersistentViewDataDictionary: {fileID: 0} + m_LockTracker: + m_IsLocked: 0 + m_LastSelectedObjectID: 9202 --- !u!114 &17 MonoBehaviour: m_ObjectHideFlags: 52 @@ -492,9 +530,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 987 + x: 970 y: 73 - width: 377 + width: 394 height: 615 m_PersistentViewDataDictionary: {fileID: 0} m_ObjectsLockedBeforeSerialization: [] @@ -529,15 +567,15 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 73 - width: 272 - height: 341 + width: 329 + height: 334 m_PersistentViewDataDictionary: {fileID: 0} m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: a6230000 - m_LastClickedID: 9126 - m_ExpandedIDs: 66faffffdefbffff + m_SelectedIDs: f2230000 + m_LastClickedID: 9202 + m_ExpandedIDs: defbfffffe230000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -583,9 +621,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 434 - width: 272 - height: 254 + y: 427 + width: 329 + height: 261 m_PersistentViewDataDictionary: {fileID: 0} m_SearchFilter: m_NameFilter: @@ -599,22 +637,20 @@ MonoBehaviour: m_ShowAllHits: 0 m_SearchArea: 1 m_Folders: - - Assets/BayatGames/Free Platform Game Assets/Tiles/2D Tiles ( Update 1.9 )/Autumn/256x256 - - Assets/BayatGames/Free Platform Game Assets/Tiles/2D Tiles ( Update 1.9 )/Autumn/512x512 + - Assets m_ViewMode: 1 m_StartGridSize: 16 m_LastFolders: - - Assets/BayatGames/Free Platform Game Assets/Tiles/2D Tiles ( Update 1.9 )/Autumn/256x256 - - Assets/BayatGames/Free Platform Game Assets/Tiles/2D Tiles ( Update 1.9 )/Autumn/512x512 + - Assets m_LastFoldersGridSize: 16 m_LastProjectPath: E:\Tubes2_PBD\if3210-2020-unity-13516001\Tugas2_PBD_MRizkiFonna_13516001_rev m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 179} - m_SelectedIDs: 9a1a000040110000 - m_LastClickedID: 4416 - m_ExpandedIDs: 0000000076090000160b0000300d0000fc0d0000520e000066100000bc110000901200006c130000cc130000ca190000e01a0000d61b00002a1e00001e23000000ca9a3b + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 78090000 + m_LastClickedID: 2424 + m_ExpandedIDs: 0000000078090000200b00003e0d0000620e00007c100000d2110000a812000086130000e6130000ea190000021b0000f81b0000541e00005623000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -642,7 +678,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0000000076090000160b0000300d0000520e000066100000bc11000090120000381300006c130000cc13000048170000ca190000e01a0000d61b00002a1e00001e230000 + m_ExpandedIDs: 0000000078090000200b00003e0d0000620e00007c100000d2110000a812000086130000e6130000ea190000021b0000f81b0000541e000056230000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -694,9 +730,9 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_NewAssetIndexInList: -1 - m_ScrollPosition: {x: 0, y: 535} + m_ScrollPosition: {x: 0, y: 0} m_GridSize: 16 - m_DirectoriesAreaWidth: 152 + m_DirectoriesAreaWidth: 112 --- !u!114 &22 MonoBehaviour: m_ObjectHideFlags: 52 @@ -718,9 +754,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 274 + x: 331 y: 439 - width: 443 + width: 287 height: 249 m_PersistentViewDataDictionary: {fileID: 0} m_MaximizeOnPlay: 0 @@ -733,8 +769,8 @@ MonoBehaviour: m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -221.5 - m_HBaseRangeMax: 221.5 + m_HBaseRangeMin: -143.5 + m_HBaseRangeMax: 143.5 m_VBaseRangeMin: -116 m_VBaseRangeMax: 116 m_HAllowExceedBaseRangeMin: 1 @@ -754,25 +790,25 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 17 - width: 443 + width: 287 height: 232 m_Scale: {x: 1, y: 1} - m_Translation: {x: 221.5, y: 116} + m_Translation: {x: 143.5, y: 116} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -221.5 + x: -143.5 y: -116 - width: 443 + width: 287 height: 232 m_MinimalGUI: 1 m_defaultScale: 1 m_TargetTexture: {fileID: 0} m_CurrentColorSpace: 0 - m_LastWindowPixelSize: {x: 443, y: 249} + m_LastWindowPixelSize: {x: 287, y: 249} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000100000100 @@ -797,9 +833,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 274 + x: 331 y: 73 - width: 443 + width: 287 height: 346 m_PersistentViewDataDictionary: {fileID: 0} m_WindowGUID: 7a5f7ddc751c2bd40b9869868331e2ce @@ -808,9 +844,9 @@ MonoBehaviour: m_isRotationLocked: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: -0.7677304, y: -0.19175321, z: -0.14735231} + m_Target: {x: 0.6651414, y: 2.4811766, z: -0.089282066} speed: 2 - m_Value: {x: -0.7677304, y: -0.19175321, z: -0.14735231} + m_Value: {x: 0.6651414, y: 2.4811766, z: -0.089282066} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -842,9 +878,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 24.765049 + m_Target: 17.484732 speed: 2 - m_Value: 24.765049 + m_Value: 17.484732 m_Ortho: m_Target: 1 speed: 2 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Assembly-CSharp.dll b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Assembly-CSharp.dll new file mode 100644 index 0000000000000000000000000000000000000000..f32ce6cfb740e1d15d7b5dd2140f886824f2b5b6 GIT binary patch literal 3584 zcmeHJU2GIp6#k}v6bdcKPaya+(4uJEar*;NV|2USA~jvQbhkiAW0~C@wi9M&HZ!x8 zY6A5^6MaG@zRJ7Nm`DsU(GVr^0h_2V8WW9AhBxe!i4WHA+@0<AhbY2}CY<)(dw#xq z?m1`foZ0lr3up$=!m+prT;VE|Q1jnUb2N88^l2w9ub<y@MH`*plbf~!z2bW%-z@6| z({;U2&s(}*b#>d-Q)5}Z>=i9z)20nQk?YJbFse19<JkEZ>!<yKy?Tch2imBSLHc|j zC!Hg~0c=)$Q!Q>$Nc@WCI8!gwjKpgKmH);XiJ~H%q2DoK62R4HpNLCz3fM^Dw{GCc zCFN}}I?%oh)=v5GGT8{Nvmxbct(<66d9FI2>Qjav_yw9(YzZ=w=yJytsZJQa<#+^2 ztT@FXzLdZ<q6Cnv^Y!&TsVhlhYeFj~b>Lz%po#JhXagSG+q9oSl1XM?NNSNM31w!$ zh#UR!{@$m=aVs3o4iD-+2mHYGgz(wWx7|`8h&bbrbh{_A7$7f?vHSUnkrdYy<&4Nl z$IEjSV#?a_ZNPdF{?Pidqn3wUA;MK8!i&$kEGzI~6lEJK*sHbSf|@7MrFDTRFd0o7 zK__ltMB%9-Np2dW`kwsuCF%D_YN6%}>_SGT0<YpI{c20n1RuDDtg^knb3sYBk6e!h z?%u+=jVCNHzDE^rpaT!Uz*aoWc{hg9GKW?46=k^`b=u6`Yl)>>L$SK%nY34|I@Ysr ztuP2pw`lrBOt^M9JM5Nh*D{7Y->P9&s0UrUY=*YyuC-yJQZz#gDJx$smCU?j4Tii4 z`6_ioUb$jBYU8-&m}eCiH0<M5H?+%^z-Y?b4g+ae2ZO*W=bhQuP<Gn%D@M_AU@{P_ zG9cravz9;PxuNelj^(2kuIIxjgq$OL=p*g9UecO2XKb(PBRd;}R@q3|X36z}&@KdZ zRTLP@AqiN1*79fUf)zwr@}9F06tkh}OEVzt`SSerPrm&o{l><1J;@E{I?<wQT6?n& zt(DA{E$v^wvUPDj_S4bkw)=LqYf&qBP%dJwX~%KjtQ_&&;j;y+B6ZG9``$}|M%=pE zl~rfF_4bWlp`|l&3+|_We-B60X9Xb8tsIYVq}U%)>wxiWD*Jx#*v<aScIx62@1E@X zuIppL4L?1ZtLCksZz_{aP1>jX`+DQCzIb0eR+ak@>+L_#doUjFC8}iBP*dq~`{gtC zA<uQqsk(j2w`L}DR=F~{>aiG=VxH&xmnnOAu<yV@MCHlV%fm9C?pV0K`^PtbzA!(! zed9Y(tCdtf5MCE<E!A6c%`(MzDdjk6({@n~3Vg9Fb%m96aUY$iuiIKTccPJQ2J8gp zR_?BK@%SzDf|GB@i3Ctw)>ev51JoWv7E_#uF-~rTU)m#-M>rp<eRc6!%gsM)H;(XS z^jySCuU_U>X;YjvdNtwGkInChMV~HC!&CMi)!}orn$!lgn+S>XDAnkrmTSDc?7!6e zw74kU!qX*%iKG5EfINBNaYm#q;Zr<4KtcJbtT;y}HqJM+fjvg7Pjn-eIQw*CNG-P! zFWH0&>oRtS^)gYW3=DF2K(5SK9LyqyA!ad6yU%Zzfg-i?UEQx@93`@(JPa}W3h|O{ ziFj!@I!8vGHx}uo5^`R>sv`Zna|cwu8T#`WOO<sA`J`56-N;vRm)})Vqt%(||G1A^ X@6p{>K(GBwyn5hn9o^gif2_b?FzS%R literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Assembly-CSharp.pdb b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/ScriptAssemblies/Assembly-CSharp.pdb new file mode 100644 index 0000000000000000000000000000000000000000..ed7d07f6bbdfb64d5dc54f9edee5746388a0b098 GIT binary patch literal 684 zcmZ<?_HtrmU}OLR9v}{IaZ)HV)H47JFt9Py02wYotQ?S%1QI&{#B+dHxsHJ$2B?h% z#11Yg%FIhI1~M5EU}B-c3@Jdi0!ZFH)DvVz3y`k?#L7-N`5?nq8~VRD-jeAuMSofp z|0Vv-6DPfR1{7up7hz!F1kymIKo>ADFe9-+_QCid8U&aiN`WkOFdyV9pcq&$NIi(X z3TWCEAnP5F{sE*J8BPN6Rj_&{23|%c21$^0KrxUUm<iU$gvJM%j4aQJ#)p_;4K^1> zyb+W5AGb=txBYv*XL7Si!jGgt`(x~v1t$bE9PnSvw2(n4xU#q;HCN9$KPM+Oxg;|` zuUHCGNY6brFSRH$nL9Kuv!v2BFFi9am5q^+QG`*S$<>N0q%<kD*eE{0$wewN&DhA$ zK-b8?$UwIgq*&L`*woO>z`#&Bq%=JdqAK1uD6=X%(=9(QFEJh_A77MO#^zXDoLW*W z9FUV(nOfwWpI1@@a#xXFaxrI&lWRbBLx00Gkxh4#Ka0sMG(C28XJ`7+NvcQx>WgxN z0+5px7(OfvU^YL5%>y;61jUSpBBfobmwkUdyj}m0eaYJv$(lrl3vyt6Tu5dJK-fT| E0XbcVR{#J2 literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/StateCache/SceneView/7a5f7d-mainStage.json b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/StateCache/SceneView/7a5f7d-mainStage.json index 1923cdcc..e6a7b775 100644 --- a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/StateCache/SceneView/7a5f7d-mainStage.json +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/StateCache/SceneView/7a5f7d-mainStage.json @@ -1 +1 @@ -{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":true,"pivot":{"x":-0.7677304148674011,"y":-0.19175320863723756,"z":-0.14735230803489686},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":24.76504898071289,"orthographic":true} \ No newline at end of file +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":true,"pivot":{"x":0.6651414036750794,"y":2.4811766147613527,"z":-0.0892820656299591},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":17.484731674194337,"orthographic":true} \ No newline at end of file diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/assetDatabase3 b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/assetDatabase3 index 456cba043d4002552ced4e6cff8cca2989c09305..6557f0706faef79d6188638ada6c27e3f2fb2eb7 100644 GIT binary patch delta 2773 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 delta 1128 zcmZY9UrbYX6bEq5y#+2%-~uiG1Ziz6e}xMz6tQCkMFElW&(SHarRj8k$YdK+w=qQH zauJq^{KT^arzB(9l8piB#?J?mxy%P2Fk^%TALiC54>Fzl(1$HFW5?I+;q!9x%{j^U z;S3Irh_inTi&8{{{&s}#J7rF~r5Byod<Yw&F|vc^jqJ@|$^*rz!`d-(6F!}WcH9)I zBAINGp%v$jin;8D$vJkkley|7cG{Ey`RwPJlz`Wq7l(em;A6vOsVr2o#&lN{Tv~t} zwpx;n<{81uDodYY*9N5F_m8bc{582;3Ixkqc8}fDu-@0A+2*1Jo&P{aVD7}Rbgb_J zA6|6`TeKS|4{ZLpDjiS!^V$;rkO)@1F(D}I&V_Uqau>3h3N3S8$j5JMAS>V){ZbR? z9e*GNMz1bvpb23D?16>P{LxxdL3n;(c~yG-SkGk^blL*mukLh!0ga-=G`;{W6z<L~ zc8w2#4At!7N);ZD?~dUu0OqaiTxB-i&4Dy_u1dj4130ncjCdGb1~6ji9@z1xFj&xG z1R48spy~1lq8lH*?2F;kMtA~vsYhsL&6P&n^g|Rjm?4oWszbenHm*4p3|0tvIBNz2 z9n$07w?X0!7I@f-{syWm2X~fYe_NZD-#iJ<Oq^<mgLvD&EeXGQPm1MVkAdboPW>$? zI0}%5lc$U0dFy`Rel@Q3if{1WhJ}J8*7vBHe|$wa6c-i!?&#+$%lz>dLgo|bz!(%g z=q!xW;H3u+8T(OG)I}7DhD4Gm63rJ;n%c*mLCNr`stm-CSQ1CHB%UOYL?V+Ul1x&F zj_64$Nh9ebgJhB|B#UH|tt5vSh>>g~CSoQQt_*DN3#vVyT#`rfNdYM&MZCwe;}%mj zp&g`{ln{lKk}|FdS+((M5NtdM<*(ROoxPmv>=m|l)i6@Q4I_4QzbZ?WWGAU2ySOYl zLP1orVl^nOI}GwWt-sH|zx`n?|4^6Ic0IEVCu{6`)bP54JV&a@^TbJNNG;h-o@MID zUb2se*Xw(%|KDW*n>p#f7c8vwgbrT?Tc>;^uvB+GVb}8B`jqpTr)uZ9JG)^;uZFD+ zJZx>8Ex>+%qpS{j8p(drL=KQ<;vy}im9&v|(m@WA7f2^@lNZS$a+q|HBjhDM<njD9 ujr|E;nY$CbH&4mK6MVWRdGM`|a_^r#^NBu6EmFOtn-{6RrAp1SC-N^7u)vf6 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/expandedItems b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/expandedItems index 2ca87b2b42dc5b60e2ef927580bfae2b67ace940..3925371aba3968ddb135535f592d6a1cd4f84209 100644 GIT binary patch delta 54 zcmaE$ctw$efq^-ZfkEKPMh*=o-YX0Uz&F{J$!+sYrflBH3z)?i1tzl!Y@d8WKmq_g C7YsH4 delta 69 zcmcbj_&||^fq}W4fkEKGMh*=o-Ukc_z(3iR$xWa$I>gXW;im7j;u^`ODK^ZTYncjp R83iY^3T$WOpS)2(82~Ar5bFQ{ diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/09/0997581727b001a479e7fa17295910ab b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/09/0997581727b001a479e7fa17295910ab new file mode 100644 index 0000000000000000000000000000000000000000..20e3cc6ee4f2d6c6ba3b1a5fb9de230312742757 GIT binary patch literal 4244 zcmeH}&2JM&7{=d?9g>C?=oipZ5@;y>pmpK|sjc|Xh9(H3LJf#qDw<B>F)XszX1%6O zrM7zk^-`%qMNsv^i3^8H9FeHFaVZi);)ePMpkBD;RQGvi)>cNgkdQd^;ECSMyg$!A zJM+$yiA9E$$cA4<<Yn~eM5ZS5pX7Gu@}HLT@^7ov@&*92S^R3XE=})P`K$TlpQ|_Z z=&oz`_H6?F3c)FCAB!Y-q-Bys#KX_^j3hTbNvPm;!jt=$yAC<u+J4@{i1S|s<NOSQ zt<AS!OwM3y^Kp#H1_{yHd>6*#YY5S}o<q=|#+d6IB23JDFOLy}d>GjC$usgd*cLoP zofpVWWaJq5Sp@Tu4!8PykyB?a`d<1ka=zcK{}Q<gSD$sV+>?h`O946c*Q4*HZ%*<~ zw>}QpH13Oa;QFca3TeXmS*H#>2fNNerw*@?n;3NJ@Op=P@*DJv$XUyc2)3C<L&ryS ztY%fL<a9GANeQDbCr{ZvpY~H}KYdE-Dn4^mRkhTj;B*kGib*PJQCAwGsCOc+Mf$id z%LtFC)tXxQ^H_O)&-Y(Hx_5Ww;x{KJK_4KvV76y5DK|8im4pXIliE!Wm}0cel`%ZQ zX9JSMrgtOfrnwsU9^uJ8j8&>bllIb~N$q@BhbC?7TpW-jN_C7$&1dd<tV#J^SI3%^ z+?w<TM0xl$sh13MzH|82q~z`&fi<b+tN#eBNy$BV0y`atF7=;k(u8|+^;es84Eyb2 zQYk_E_td;JDas6;L1XIgkn+7WspV^&eHoMboIm84nkKd9GUS+=mz?ER|3~E1-;BPO z{u`X{ck91NZo<{)rM6oCC*;(B3w<yBt(@<7>yMI~aP`MJJS)qn=LkH?v)zVZW8HYk zwf(%^u*C4yetx^dJ>&DAk<)|Y2=S?7eRT~f*S`b3myo-@dWYO6ch7w%xe533d$+?= z-y)~}d*lh9arNIP_sL!T56Dfp`rNnWR{u6~>VHU{@H1EcBXXbI)z6WeaP=orepJQ5 zd3~@JRaIQ5)@xC$BPkZ+XzyGpz#TUCZLGsaPz(1<b>U!8(S=zIin#wUF!PF$E~~{t z*oalQq&bbxM7R{cSUjtj;)a~4HKQeMuGvCKhjCC2@RE4BuFYLpU92oi$lJ8Ka6|>6 zeXR4YlMNl2o4LARBn~vgQbn5!*CF#N3RD=I8_{eTJ2dU{w9lkH@Bdi@%hGTC3iK<` zuRy;7{R;Fe@c*g6FUuFsMQb-4zVgE#=Pq6LZt-iL`S0JDm<a=XSHU-uiO<fc=y0=I RC&?-NdOqv-AJ@Bt{sXZcmM{PS literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/09/0997581727b001a479e7fa17295910ab.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/09/0997581727b001a479e7fa17295910ab.info new file mode 100644 index 0000000000000000000000000000000000000000..f170f6ce8d4b295bf9b24ffab0b4d2e0d2cc214d GIT binary patch literal 617 zcmZ8f%TB{E5Ue=z75)O6&{iS6^`VL&gisIVfKaq)Hi;$MiM$S_d_8MNec_vD#=ASS zez*87@vtC5w+06zK1(2c1C8^0Av8#{#m*w3ao}WYJSqgCm7wG=mOHfMVKE7W@ejqS z0sGSHZegSjuxol<7?5gs&V}<$Yc;sJh=RZ)AF_1KHSmnGZf+#o_OLuUq>D;ws8N(W z`vuG0u|tJK0~{LEy)0RgrpfFnP9BpYiei{1DJB*0J)Na-1VxZ`;KvA=(AZlD#>dyD z9^m9mwR=!m$??caqMeIm8u@c;d!>LVTYEMTm4f<gg7#K+E=WS|f+hAQbe4X8F{+?I zMMH)<e;sZE#r4r;x@)aNdu|s;6W=h9%ifd<H@#A)?fTGz&4D^M|A+5@mu+|tTnT@; iyaBbv3N4yF67O-xUxA|z-+<=~B{NgC`EV9@qtPFy-@Oh1 literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/57/5715fd6bb762be247b584111258ba125 b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/16/166dd97b0d7122c4b87f56e372e74c20 similarity index 98% rename from Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/57/5715fd6bb762be247b584111258ba125 rename to Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/16/166dd97b0d7122c4b87f56e372e74c20 index 57bfa5730f2c5a0279330831238e665cf99006f0..23851a64adac6a183f88dd2486032d6ca829198c 100644 GIT binary patch delta 73 zcmbQDI7M*-i-2X~wYl3bh%5PYe^0ejuRFq|%D}+jSX`W1QmpTomzkSbl9`{U?~<CB d5+841V5yg!pI1_ppOceXG`Wz&d2)k*2ms#L8Y=(* delta 73 zcmbQDI7M*-i-2Wm;QejYYOkHPw~7b`?T`vmWnf@%EG|whDb{z)%gjwI$;{8w_e{x2 djgL1lFwjfR&nqd)&&f$Gnq0`?Jh?$Y1OUfc8NvVn diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/16/166dd97b0d7122c4b87f56e372e74c20.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/16/166dd97b0d7122c4b87f56e372e74c20.info new file mode 100644 index 0000000000000000000000000000000000000000..4bf702e72c05e011a520a30660facb57f0fb80ce GIT binary patch literal 617 zcmZ8f%TB{E5Ue=z75)O6rlp~|wNw?65JEka147Xz-lUcsJF*>0`Fhs2NGW^s%<OB{ zuLeH_p4Qf)+k%4$#Re?CK!^D)V;u;!$KIet<-iH8Jj$3wBS4C8<Oej?!)zW1<rCQ! zftO{HtODkaLsuyfGUig%a;HrPE@w#)c;roRcl--Hp=gg+lD$4{&JOKGB|2!4aT@%B zmG0c5L~A1)8nlDpIh!q)oUgJf;n^%r>qYgDHTO%LXDMcjI*qgR;KvAt*y&nP2fy`n z+~}^>${8&snowHm8f3xA9?=LiIa|#VAJ>~dO0c%rdNvS^gm&D+)<*O$NP_Q-B<9L= zlD>ZsDxpGYqm5np9AA;5`sj+T*T$h4+s%^sg7N~n85Ebe8>IZbuJ=7`8mY1QKl}i6 pY(=M_O87<P705j{Xi(K?>68ch3gmY91~g|VS*S*rG1fPe$q!0^yoLY( literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/23/23ac26e028512c64d879d04eaee81963 b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/23/23ac26e028512c64d879d04eaee81963 new file mode 100644 index 0000000000000000000000000000000000000000..77fc43acbc1ffe8d9ae1f7ba5c819f7a581f365f GIT binary patch literal 4244 zcmeHJO^j1j6h3d-Va8DqM1B+n`B6}y)6Njo2<BmCCYA&!Oooktayz|+N7~oP>#Hy( zgcldYm|&tYQR9Y{8+Ys_gpCQ2gpjx~hOl5o*sz-w<@@e!o4IL2V%)IknVjBxzMlKN zd(ZuP=823dk<~wn$Qq0oL?*Jik23o*xsNM3dD?2Vydi+;G(K9bA0~G!{ndQ(_~+|- z^X_YR4sHN?8qO5jhaw4<v`mnQc=-D*CCPP95;AyQ_v9{eS0Uz8JL^5nn7<Yn^HXqI z2j7G_aXPJoZ^xY2FhN)c-;Fu(6$D}2&*$Ku#GLyaA()taFNYbO_$Xk{C!Uh~z&2qG zd0rxJJSE40pNBIZ>*ALG0AljIjIkg8E6n$M`BxG*?((xv7Wd?D>?Mzw{I6o{$8T=( zW-mW3*%;5oI&lBwd5vho{IpXC-h<ueuv3TEi5nkw>aebhd-4nT3y4|E^>EsuMnlI( zbgZUStmJGnC`%c$FS4iXm}`#{?Q!yyEU5V0QB~7YkAky7sH!HYs*<iYM3HYcu1ETW zuE-d#sMVTSx^cX6@{>zv{=M_((v=HyS)lje+%WCGh?EDKPD{cIqe$(chfFa#;z}7j z!FNNF!J+pd=ApS8=pOFLLCjT~ha&CALy_8imxm(l@LU;^Bx>^*k(%$^{aBImxh{_t zDRC>(-$BaDr%1hIl=;r(TaglXe*{*f7GM4&up%Yy$rH%w1bE5+T#+U`o6Emkq+4*_ zJ|dMexPNVnmm)=(!82?`{S`t!mm;<J3g=u#q(1XU98puG_FhIDQM1We-11*WO#Y1+ z`|-cQe7~3fP2$E~em1q`{NErZ|63UQ@xRS{zn6bAapNxkmM)%_MbvW)8s*)-1E;ZW zY;qkvZ#7tA@a1~m*2O)e^Q(xd!R>JI$zyeO4I%fx1EZG^cXjnHai6$*@9z;e?l!-j zUA(PZ#N^*aJmDIb|9#><ahLxC;>KNmp4;M<{}06E-$Oj%cP{^4;y!VgKSSKO%Rk=6 zkE%HMQqR<*nu_zag?be0ND75GIxt-h(8H!L#yV^S_3%@v6=#B~&QD=dK>x$U<P{=a zQKfv?h*dbRnZ`8{n&Pq2c|9LDWVYUn=Cx_F`LYh<pc3FA@#2Cuy|PxSE=tI5S}Pt= zL1>qCpEcLek?G8}qM`V#8J4TsG+YNcsiHuIvFV8B$T*=f_Ip~&4#Ic}&aw<_P=P@O z1{D}oU{HZU1zwyAOx!N5`g+~1nX5moeE8_Q@Avcd%>4Inj2{XEysO}iWc+Zmwooi) Yv->mi^)Qa=)hb>q{=Yr==i45VXK9C+LjV8( literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/23/23ac26e028512c64d879d04eaee81963.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/23/23ac26e028512c64d879d04eaee81963.info new file mode 100644 index 0000000000000000000000000000000000000000..963c6854d60a6ea27f95acda6e1b381f2be01e64 GIT binary patch literal 617 zcmZ8f%TB{E5Ue=z75)O6q$RYuwNw>B2%#Rz0ikFcZ&FLP6WI<0zMi!$Qp(;uGy9tL zi@^_pr<JwnHsD}Fu?CCJps=`ROo7ll><wDf4xH$;M;Wtd1W56Xe2>O@n9TyAeIk1t zR9{s|k_XHk2X)XOWXz?i)wVMVT)~nc@W`v+?)VpYK+zsAB)jgk{&Hx~Dxsi7#%b^~ zR=KYpC0ZNd(4ZXzFIYB%I?FN17Po0u=X1WeTk>R%fVfDPd0e0eKSnUbPFI>b_^qeo zMmKe*o#~`R6H3dj23c~lM>GOW!Io*_<8t$R3D%Yy&jzBA(2jf9+KAo-N${PK#9Ww8 z(zka)B^*%NXrrp0;ww^AA6=>X&Nwt<yEK{2DKC)gL34@QLCW9jdf&sQks6!-!}mbP p)^rN0gr8JigWO?*26c^=PPwPAKyHU`Ky!wYrEa<^#_DP^`2o{ByxIT& literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/31/318059f5db6ac734b8c5bcc1c722fcd4 b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/31/318059f5db6ac734b8c5bcc1c722fcd4 new file mode 100644 index 0000000000000000000000000000000000000000..b918f2c22f8e430f6277e42010a920bdcae53cc3 GIT binary patch literal 4244 zcmeH}&2JM&7{=d?9g?Ok6zCV<pQU`XPMjbC;zJ802ulr^Ah=K(Ch-^++3RS%ZW{#Z zo)8l1r79AL3nwnzxP!QHC<s)kx2k_Y)eE<rYMy6iZDnK&35f#-PxNNy{dxA;nRgyf zA~L8%KKWflmZL`}GCGpqo7<hs?<?o!|7Nr4^#NwH_|<IwHnw%)S>x4zw;$^DyY4+d z_yy<>2u@+!Ba+~erb!YJ4?p)al05Vzp@P>APhMi~QsjJV>v<0&&R+?}`56RTi?6|$ zoWa)OTQDZ;Cq!%UT^N%uAw=VPjzfP8W3F?6FfsGJJVp%iL151(&&WSuYw!$pJ|H)d zkyGH85zL3$-0B}dPMr_Ychmof^Zic!kI7BA`mB@Xp8SQi6p&MY8TxMe<|LnV>f?}2 z<Gxr2uAe$9NE6P_I(6VV*md?hb@-IrM88vq&)VFRJJ2s8XDvTRupO?~bv&tKHLhYM z7aKuIN*J9RIdA)X+K;CF*m;>#@ud^0s-+eM7lTk$Oj1!Zx>6TKz0+|m(o?!DLp-8p zb9CYHsq)$V*Dn11{OQ8=pU#Yc{)ym%+1|#a+|Wc;5*`>$YB$|yiqSGx#_$B6^+^t! z-i@4_=4#-3geM0vR;dn6+D(ThwewvanzW^Jy-$)T)iEYDpSkO?Cgpow9cxl@Ytjc0 z<>Aw$UNXq}&f!~=lDl65Yf{S>e+jHf$vt@mJ552C`foI8!o9iri%q%#`|V;<DM9;g zYF?TYWrj|_G4&Osd@oIE`4VSe#-u*y4>+c#N$t4|IHu+$XSvn?1v&M<MBhz+73ce% z`m4!Jxca=*7VF<YPW`p$yXmjve7{qFJ-G>2e?yyRWghh$f=79_8xd@*8!x$*pEntn z7{1ugo7>zoKK~UtJ-7uSK6R|G?jhy+x1#qFa@SX1k^AKCxo;yk;a+}Uw|VMY<ka6z zp70r0e+Riw?&|L(H{t4Y-<DhbN64xF4SB-PT>Wp!eR5YnM{dH^A5QrR6$d}+W3{NN z;zD(<7R5S}Vlj>mOq2rLVG}>cI;;n^@Q_rej|CN77{{Q9`ws&%uNdjFnkj_!ScS8i z)A&q;OY!8)Wj!0$<#eqP&1!Sa7D_sdgK~hE#Pf67+?Cat%DjZUO{>$BDhTak?RTB2 z>&V>9)oCMfq!E@X+FZB}Ijf>Tg|WF2&6cr4)4oglOxpAQA4jk(z1FKhuL8Xa^eWJ+ zK(7MtPX$&E-kN@N|LW13-~X}p>gE@do3J$V*S|h|I1KQ=3jQM*K6*(-Q;m=yr||0? LE#Lolu0!cHZmyM- literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/31/318059f5db6ac734b8c5bcc1c722fcd4.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/31/318059f5db6ac734b8c5bcc1c722fcd4.info new file mode 100644 index 0000000000000000000000000000000000000000..559ba166aba7513567774304a902cf3b4c5099bf GIT binary patch literal 615 zcmZ8f%TB{E5Ue=z75)O6zG&$M^`VML2%#Lx0ikGPZxTzk6WI=>d_8MNec_vD#=ASS zez*87@vw3Z{T4h7=&Zrv8)#hKGp0eB3|os1jR!9q6Hvw+S_w-2qS&K#0cMj(nDCHo zYOq;nRz~WG`nuDF0jc`eR5#x>R)b%%BnkrZA%(B6fftljeIv=5!}{paT~ty-g-p=s z7cBS378N?z!?8itNkKD?7Rl_XoQdKQ_<S-g7JOE4KH~H7xa49Qr7eUpVkB-DEJWYK zD^Cw_GNu|1DisutEG60{n@^K)Ze4E_IG1h%8;Mdub@t%6m93AGm^vegy@{NppI?M3 zC{VdRLY=?%x1OT<=u_P`)}uYQ8zqy_Fp}%e2!*>&snc#l=Fw$Ootyu|_du&Qv<9k# kKUCg;%CJO>hNGi3?&%{?((x0}oUvqT$|mp6^W9+Z2dg8!ga7~l literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/74/74ef1dde6bbb98342b13fb0f7fa328e3 b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/74/74ef1dde6bbb98342b13fb0f7fa328e3 new file mode 100644 index 0000000000000000000000000000000000000000..a8c71856649f52b2a717a61414b66ebf4eaa6ab8 GIT binary patch literal 4244 zcmeH}&2JM&7{=d?9g+r0>GuaMv_L;7tz##VT0XV33Dgo$69kuvnn^sSi|lo@Ueg8% zvEqOLi3{S;iVG($+;Zrp>c_1YklISURH*7708%+MC*0?mSz8&|s#J*s2T$~7=KXp0 z*_n5qOe`|0MAlssk*Cq46Pd^tKFm$!3frp%dDw2Zy&=GC7Qfo<tCL%nZ?_)Y`+7-l z*mmR2?iWEnM{o+;2O<d`X`3Vw@$hpqBgv8{2^G9<c=8M8u0_tbcAobz;{0d9I6s46 z>+tm$lQY;ld^5&m!-QxZz71pYRfK3<&nM8I#F*<GAxzACuYeJQd=%L8$usgN*m^ue zohQgmWaKdTDFpMeF1Px-kW*(h`hNOrIN$Hpf0EpUtIs-F?#b_1OA$HspF-bH-<;%6 zz4|z0)3`6zf$OKvGo%UUXPr9m9PB!WojN>6ZerM}!}DG4$v4n1A!jXLK(Os?Hg$YZ z$7))|N=~+dic~QAEPvegg|weY`^n?7pyDqMsk)X%6r2n~RWnIV&FNZG6!nh8jY!Yx zs*Lf7+U<$u9}ZWK?L2$p?wy~PFMN445BeK|3ugO2Cgp}^vXbz?Xi~fBAybTwxiW?) z_-sgW*z^=~Zknrs?-8Et##p5~G-*E_n$*sBb!gI#&V?aKqEyG2)O_Zy$C{Myb#<&s z$*oCmL6nD2lX}T0=R1dQO-k<m5m=L2zVeU2nv~p=2e8vDbgBQJCQZ0ESAV5RH)6ki zOez&<Ur)_TlcLPf88)UqgOu;3NiARH?8}(c=ll`J)HJC*ml4O*yyPsm`sa{S|0VSO z^k3$DzgPbiaucpTFSV8W7m-u{RrLMzU*mkgSAPS!30Hq(muF=W^&EpodA6@3*jP7S zaveXvVOV1LN<VMva?kku3UYdIGeUgoSYO>h%JpwS?<M4}uihm0$=!2*i`;~J`Murc zsc(@}{~hv#&$#+q$$fHH|6Otuu0Ho|xz+z3IrZNoPxzUu|30}-?&{~rO}P5wDL<s* z;I!V?i0UdX))yL4tRpFv;%L`QCBPjv^Hr?FX3z-tNWHu-sOjP~1|{5o7?^pbNLSTd zF>J;voY$PjXChpRpU$1q^Kny-G+NQTHrH&iqQf|-26#!lxS-8lS)Z#dO32%^UOuRT z&_33E*U_eq%*|Xc8;OrvVWp<ch3k-GDhgB>n;X$=89OxXK-y>0p7;MWf@K-BK?MdC z7*t?Tfk6cZ6?l9qu>aw&_rLw_(#K1MAOHSm$N4?{+GhUyH^=ve0lur?8_D==D=e4u Z`KjD|BaEX)t%h$EkD&ea$K@WCe*ttWnmGUf literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/74/74ef1dde6bbb98342b13fb0f7fa328e3.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/74/74ef1dde6bbb98342b13fb0f7fa328e3.info new file mode 100644 index 0000000000000000000000000000000000000000..94b7bc240601ce825b4b70e185fab2de15c8ad74 GIT binary patch literal 615 zcmZ8fK~BRk5Ue=z3cr9RO+`yCsHLiigb>Q191w~&@jA8S*pcl}%IjG>YD@9WGvnFa zS-)BQl6Y7-hkgSdCUn-|@D)1DZyD=A>Jod44z&j_jSeVd4y^<we~|Ccx&X5*5;{C& z<)Eu7N#+sq`=P5fNHsns(`svM2R>&>6a?g5a=-rzJfm#)SCY~k)<=)-qLLl7$T;<V z!76|3QK54q91FCA<T+c+QKX#XeO=cN%WOWY(@fNfSO~~wOC0;}A+!<maMP8h3SsE! zX`s8tXm5>DXrr?-4XA=sI8sQoIeSQxaIOb`Qs7*%32Y>Ug7!RyYpm>jl*H5-N$geR zB>ng#R6&i(jVX53%Xk|p@<(5Ey|Etcxm=oLVFi&~51K374oaPN8)A=xj?}sMKYRzY pYE7FUC;TRR4XQ+e7IlM;Ho2pZKw-yEKz&BbLJL!k=kaDT`2||Uyz>A6 literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/81/814e3e546751dcf4199ea4cd19230ec6 b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/81/814e3e546751dcf4199ea4cd19230ec6 new file mode 100644 index 0000000000000000000000000000000000000000..691a653197b45c0f8782e96de4ed144661a2ae93 GIT binary patch literal 4244 zcmeH}O>7fK7>2)%9TGw*Ek7;)p$-4EPMjc>3aFNnpt>qxh~R=COyV&tve(gi1Ef;b zJ)vHD0CAw|g;OuwxKnZCLL^kFH-wPr1;mA0PIcdRW^H9;3kius51#1D%=dWq-I;G* zPa@K<L_WGLA|IniCo(#cKaks>%YR+Y%fF3A!|MUeX7Q`hxHYzY@$uZ7*LUvgt^4jS z9R3va0)kW6z7k3BNW&zFh=-p)GLqc)B%y-W3QwM3?uW?v*5>mbMx4I}jPo-HwkF?% zF*$>+$%il|>m@{M@_iVSFC#?bdcK4H7{**@A7NtVdwGl)<o&>&Po9xyV4Ls^b(WKx z$jB-1D+uNTEpGJ>A*ap?^qurS;C#Pbe<isISD$sV+>^htmI89>uR`BR-<;&bc6}VO zY1|j<!1YsSHEF{6S*H#>2fNN*rw(h$P4qf-Sl8m7{099Za@O(_1ly5%UB}0Dtj1NW z<kDPFk`hMeM$X$lpZ23^KXzVbRebq`s%oi4!KENn6_Zrdw64@eQExJ?Mf$WZ%K(q4 z(HLF)^Hlll!JjTZU3j#3<Jy@K(7zB|Fx$JBlpC7JO2Px9N$sY4Ofj0~${3#DvmVJ| z)BBNg(_9UFkMQI$#wyjJNjvG#q;|fmLz6ajZuCeJr8>r><}-Ia)}(x|t7A<{ZcTa* zqC9+>)Jys~-#L71QgZi8U`=ZI(l3EEDY++aV5ig2rT$w@ns9Hf{!)_;V!s_sDkW(D zo|=~?MVX<~YfSwkQoffawS1YgFJn@l^ZOiA)1>xX`W#d9lC#|E|BRga>(O`8-@y5P zyZ%OU6RtilwWa#MAgBIj^qus#aK7KJzm?pCt3TM{S(!&Y2jEej?KT7(>&8p2>F3W3 zOAKG?=g(W*Gd}+nIXyUp5T82MS9g(e{oB!d3AyX59ppZ_d+s~QO}Llet`<*yi=6tq z$rC=~>hB@<$zA=u<R)Bw?%Q&!{{T7lzaUTenXCULxliuu=g3XC`ok$dq2l1GK30pW zDlSxKYf-EtDHh}C&_pS~9X4@2)?q!Uh2KbZ>R3?Gg>ejuxc@LP^NNu!tLZ{mk5xFM zIgQUmxD-!LU(qvhT_$UD(Tq0NY@wvXI4B2rNjyKR&0SfYuFOlw+q61$Tm_+hto5!l zbsd?TxjJPezMTt86>TnDhn!VWpu*VPh-S;!p=m#)eJ1UB|BoYBmTv1-pj&}%1-cdJ zR-jvf|4#+h|MOzv>bixKH(!4L^ycXE$`F=j{`%L4kAwmKSHXWI!$&WxXtENNG*M3B N*L&H3|7x~P=Rcx5m=gd1 literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/81/814e3e546751dcf4199ea4cd19230ec6.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/81/814e3e546751dcf4199ea4cd19230ec6.info new file mode 100644 index 0000000000000000000000000000000000000000..affcac7aa72cff864211a7d6dad78016773b0f22 GIT binary patch literal 619 zcmZ8f%TB{E5Ue=z75)O6khG<_^`VML2%#dC147X@-XxZ6C$b$%`FhrlXbHY~X1u#I z>lcHc0#7Sz(QU!Ogw7f)K7+#SmN5lF@3AvzQ9E#=)gEQcq7fj)H}V4->tU7zLi>ko z(|~!Eg5ydH6>!(|>Zn1;;XPF@cCAt1G8P4aN8SW?&0pXVMcs@f`}VXxJG57oP*5Y| zH2f7S+_^)E)(&uJQ1^mo>>*Au!C5+A%wk?vX}nw_q$Q7+_eq51JV-n6V}wxb)LRJ7 zrz2N)@M}%BCCHppK%x?8GPXz~f5yHy60FU)o()7Lp}x4Vr4gMAl8`(ji5bOC()SNS zB^*)OAw*R?4Yz@!`si}iwZ@^jw2Py}Hw@&u*IeSRm-2VNKK0;ppf1h-;Rm2~Ygz<V l!Y?YXLGH0agStdZi#*V0psd43pgBXyTvu%|oXyQ-@&igwzIy-w literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/8702a31c3ca4b254bba5e15554fd1c0a b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/8702a31c3ca4b254bba5e15554fd1c0a new file mode 100644 index 0000000000000000000000000000000000000000..8b59d74c2312699b8136faf630ec4d4ca870b1db GIT binary patch literal 4244 zcmeH}PizxM6vp4i4oO3S{-cFL6Iy5sO>yD`i9ZFj&=}#WPy-4F5Dk-f42$e_wB7(g zLhK1~;Zkt`amlHd-nb$VsE1xas*rlC+B@onTTXSqZ)R;}WDBWM4?TFImznqT?6)&- zzDz7Ks6^hnBO-63M<+5dp5K$(mCNs~<mK;Xv+4B#X0!O!Z2mC0ZTZ>4tH16((8Hrk z&kuY6`aObE*mjE~c%*5PM8w0-j~PiGc#=@TYlkPlV(wbxd~54@4<pWh7mV{W2(}jA zgfTgTt;M%uOx90`*5acWldmE~<9d!le-dM^bAT{0^SwMq4Dvx>&nM5wA7GpC40YZh zH<6JO;Fl20huYlg??+CZ)#$tFzsdQ2r~Vpp6Rtk%WVt85VJ$`E)L)0bo4z^8C!P8@ zWYf4W)`9D%&O4+D=VzTd@Eq(q`<*(xM{c6usl)m<_v9Y*OUPNv_YrJ|8VwyE)3KUT zv62f5L0QTeogF`C`+V9@r2XVMnOE_}<Eo~m9t9VIP*qJ*RkOO<5JkOHaXr!}bw!4F zM9t>J^5YYg(_dXb|NHY_mTz8}9tVAa;DXuyjY+woLRJzU7)@$7-Dir?GFQg%1fTUu z4x8SEoSWuq;CqB82QXHt4o%ukhbFc2T^*XVrE{}Sk|@<NCN-bA>#-)~dtDuCQgUn3 zpCHP^r%AnJkn^3xw<aZb{|Kx}EnoRZU`<Ny$t&3DBy_3&T9YQ+o2$Rlq$AjG7n4dE z+V@lQ(xfOeboz~{uOa1oX;RBqIr}mu^*MjQF*QwU&t<?dH7_~Kt^N(<)Zc)<oBl@5 z_dE4JBsbye^HN)>e+xPFH>2;S{}Jc=o%+M%CS3iIHqXi;>Ny0D@@%&t*jP7SaxFi9 zY*=FWN<V+n=AQBSZRGUeR)qM}vA$YD%JpwU?<M4}uRbOB$=!4RjNF8K`F-Bzsc(@} ze>-`?XI%Xq<UYBp{{^`TSD*W~-0D9<PW>;*6Mp9E?<DuhUHu%n30HqC<;PVVT-HbG zQBB3g+I&5VbtI)y9PKZZ1KeSStFaCnK|MSuwV5M9RTrl)DB=FYz|1Q}x}s)_VIx-I zoaQt>6X8<)ZuXL%iyLyPz7Wl6bIlgZI*fx#fS1IJ^V-~%wb|;TguG2_GsjdA+Q-`O znr`UG+|0EZBXM{kELXL;a2;}5MS%)qb0eB9V~3`FoA#Ns=lws0U|D*tSAkvydKKtZ zpjUxj1^z!3xVmNE)1SW?Ej&CkJYD$n=@P%@ng9Ncu|r{i?<)94GWPXF6-{YXCdn!M N`ft|nznt$7`UkYimNEbU literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/8702a31c3ca4b254bba5e15554fd1c0a.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/8702a31c3ca4b254bba5e15554fd1c0a.info new file mode 100644 index 0000000000000000000000000000000000000000..fd5b76bd89ad92be39eaff2e9fa4911cb2bbcfb6 GIT binary patch literal 617 zcmZ8f%Wi`(5R7{4SNIDW2%uEl@=#Qys;Y8G4^@R0ynrR!Alo!ezrJguyy}~0#=ASS zemD3n@VK%T-4-0o=&Zrw8z{^l8B-wi9tVRKwF4)5?NP=o8Ua%LB0r$99%e}(w13Dp z9hfZwUumHN?7C4^8ibslQ{i&g8wD<BQ4o0KLvYvK0xu}q?oP7rkL!~|dsPVqEiz8C zU$N4i29#*+1cwIgD0t4Em(c=}xK3(Ft3{Sp6=WD^S(Y|Dt|JK20sI&t6Fc`7g7NvS zsV6u)lYI@c;1rK&1e%;J)5xED+Zzei7F*8-qLI*EOxW6p!39akosq=cg-+7XFG3|$ zDD9M?DqpADL{WWog&KO}&|KQZQQ{j0ay@D;aW_hN-mVWl*qo?K^MCjOXxW<fK$Y-^ j%4?8&Y|x;t(b66d^c5)T@C|6rP_ocXUruNBFq{1WcPzcG literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/872a5996bb7c1994bae9aef75a2c42ec b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/872a5996bb7c1994bae9aef75a2c42ec new file mode 100644 index 0000000000000000000000000000000000000000..19b0edca170eacf85993a1bbf9839916fb1b28c5 GIT binary patch literal 4676 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 WQ~H{^hg0{w7Abhs_czVg?D;o8-TCJL literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/872a5996bb7c1994bae9aef75a2c42ec.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/87/872a5996bb7c1994bae9aef75a2c42ec.info new file mode 100644 index 0000000000000000000000000000000000000000..e23debf90d59aa23a21d1d5da0650589ac2bf693 GIT binary patch literal 631 zcmZuv%TB{E5Ue=z75)O~E0p9$TUA6tQ1ws_2t}J@lUj0|$m>$d*RxrRmLm4%nSIR8 zdhPH-<Kck_{SrJ3IOah33=JmNN;RPE20Mp@)`Qor?NOx&od%=7u-u}f9##_}Y+tC> z29D?!t@W-o2AxoTw{LO_+JqL|JX^J{0iUR$B=pFuF8%H|@QAwJU8HQ<!~E!x&RM#F z8db^q&sgS<9U3GGuneg8x=hslYz$Ex-{twN7{&242aEx$Sp?%^I>tg$JLqMIFLe8N zotuIr$+QKSv}9{^rO_p7G>V3O2z%OhVSp%I3N1`!pgzf`!s*USj=27xdG6u_T>AFT zjSS>yD7e{VPvI3P9*90|y4HEV!)g9-5^<f7^Svz%uJ*?K+`6}477kPpBYH3JE%50r nUxX?A<n|WK1}k)E3naeimOloYE}w#RO3Tz%Z5HC?YB2Z)MRCNY literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/b4/b43726a3c26a16543b3d30ba4ab424c8 b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/b4/b43726a3c26a16543b3d30ba4ab424c8 new file mode 100644 index 0000000000000000000000000000000000000000..9d558bc9e4709c438660ce94f6b52a10dc255ba6 GIT binary patch literal 4672 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 literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/b4/b43726a3c26a16543b3d30ba4ab424c8.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/b4/b43726a3c26a16543b3d30ba4ab424c8.info new file mode 100644 index 0000000000000000000000000000000000000000..5875bf448916d81f5df1f09a0241b2047e1a1d26 GIT binary patch literal 610 zcmY*XO;3YB5N$mAEA|&?TWB@hY@0?BW11f7!5A{YKsQ+yva?w0uXmV@D0A3^_vYix z8x9UXHC~>G(C@&*jAH|Yuh3v}t5gHp9<g&sXgzq{+5uIH&}lIG8_N?q8ekO(VTVF> zFmOe;^-eH<?wj0#HldcgX8YDP;1e~MgaLWer9b}%o>AB5Ny@RkY_1;ZFH1L2qbgbW zAC~!RhX#oPECcFZmx;>b=wZ2rsNiR@Ud2%!mC-zh81i@-7mt$K!5~8nq5E-<yMlx@ zZ2=}N*$iE2bctFlR`Vf*9T(jiAWC;a3sV`WN8MC7-Fe9opC@*?iQ8QB{=pp#<Y*}P z*JLl@D^NTMecE)b^KAJzcpj~|PRLDfON0B~nBTJwhRce93MxeC1U~^^+42pT!Y^)b g!5pzdhqgfC8=m+dV4LOstW#R1wraBw$<1u`15Oya<p2Nx literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/dd/ddd2057527d4ffd48869b78312281dd9 b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/dd/ddd2057527d4ffd48869b78312281dd9 new file mode 100644 index 0000000000000000000000000000000000000000..08883e8daa8855b41e8822308d29b05a6dcab37f GIT binary patch literal 4244 zcmeHJ&u<$=6n+~!O$a~B&q5$=NuWTfV<(j;>JM#DQq_mFZmX69O3fr5m#yq|wB8f~ zLaaDc5mGM*A*u=~r(U@APSsm4jZ~1hpi=P%^paanEZ;X{TN&A^gnHrN7d_9s&u_k+ zdGq;YMTV8gb3cg4PK+2trt*bDxr4dFht-1olcuRR05F@yN1A>=J+XCnW%J=rH}%;5 z^^K#i0KEWb3he`t1WQsABqAREZe%36=}AHcuj8KFL+&$(`PBA$4>RV!0F3z=IIWG3 zVosb+YvbdX6B{H5YvcPdC%%IqjQcqO{%Op)&mn?|$@dDF(TNWO_I%<Qc>rt_Ysm8i zapM^|4g3<E@kj@^{6`Rz=Shsc_@83F-_8FtapNvO>tu0H{=i;}h{^vf#$Np9CU1B1 z<C2Z>T&x54PoC$ACd|(|b>KbNeGWQxc#*jAL8lHcb#PCvfxm>9wR{;)n`t(6Jg;Ll zt70V=SAvREF#9CGV8=phoNA5J3$m=@&rYhkmPQm@3_?{iK}{{{T2mDH&c=;MpV3tr z;T5In)Yh%j)$@nH{`CIFovkaMpUVUN9nKBY{)<R?pt-ChyfBK?9(uqOqb;tC!4rHp zAUPcRAYvYxyMgZEo*czowRkAfUOW`3&3Aby(l*bP0ZF13j}fW)&fSj{DWB`|SdkL9 zBK-xVynKq(ONN>6T)q`4arZ}HMQZWwKLRUK;+||mPG`VN{zr;5;n`gN?IPWc^Y##_ zRKR_`C0>dYWd_fn5%re{`CN+B;yavk8Ik(TA96%Zk=lD1azxE0XK~B_4Px@|!q|)d zRp$HM{I3x=?((y#ZRcM@O#as~_Tqno`F=P57;)n+|LzW+l~vSp1RCYt?t#--H#WJp zp7$CoG5B^pzuCb(qw}kXsljo$_~fy=T1UwJPhj*C;;ydVBJLA+@BMA!#@*((uY<RA zi<tcH5Kp+q<$ssBPu%5ykGOG{pXau?<^L5i`QIm=@H?0P0CAtV%bz1|+~uEa;U`rb zT-L`MQC-Ew`f?+RbtI)y937df1n6ONU&K0W295BT)XT?%nl8>_QbPa3#N?GCT~&+4 zuo<gxNi&UWA~eNQi<k6L+?2D8m1s$uHe0OdFb=8#9uluEYtt+1i?vk=*-h)^c@>0q zS?5{jnmRI_xn4FDAFYIynl=sBLC&ivP+@F3qB$~7XpH@yma&5{o`th4ed|}CUx9uF z`W5I`pkIOiPX+!uQ2IEUPv_Tu{OZu&Z-4uluV?1Je{*ss4DhakH<HOB-UG_zd_JFB VYJ_prsMYXV@%Z-lpWk(n{0o1Em|g$? literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/57/5715fd6bb762be247b584111258ba125.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/dd/ddd2057527d4ffd48869b78312281dd9.info similarity index 93% rename from Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/57/5715fd6bb762be247b584111258ba125.info rename to Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/dd/ddd2057527d4ffd48869b78312281dd9.info index 35ba945dca70ecb58efb74576b3827fd688c7426..c78c063cc78a7b62520ec0a2de1ce45010f23c28 100644 GIT binary patch delta 44 zcmaFK@{(o3TZNRA6e9yub5kSp6qB^H6cY;zGs`4%3u8kgBMZZn6wA%Lj4_M=O|T6N delta 44 ycmaFK@{(o3TLn{dL({Yrv!o<*Goz$bBNOu^QwtMALqj7|i=;##xtW(Sh7kZqHw?c3 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/e7/e70322318525340469eb10d62df4231d b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/e7/e70322318525340469eb10d62df4231d new file mode 100644 index 0000000000000000000000000000000000000000..f1d8f15c3db5c72292889e40807781506dfa6648 GIT binary patch literal 4244 zcmeHJO>a|26umEYNC<^eK3XVWEnnr+u@fX(70?3`gcpEG1VXC7OyV&-^!yw>zW}LJ z`c|l_)J;`Yt=O<)(;a(Icij{Tkh-Z5>JR9KT~@f~%-B{&wvbRaEPSKunR|TayqP=4 zH&0|(iLCxfL_WZXL1Zjn_&j$gSNNh@kk`#-(;EPo&Elik{BeBe;-B-c{{7{l-n#$( zlcOI2y#i+n?XXCSB~25gA|C!8WF&p)NlFH<<DNW4?kdE5YJ0th8S~cyV}1rsYvY?R zCr+oe@g0~G8zcy8<NGluzKkG@`#BB%am=~TA%dyN_X?QNi4OzzeBv2-32YPAkY_n@ z;~6;*{05xyNC&t4M-Y=|1;$?d?=j!+=3hzNxXaHvS=^Jqu$LlY^1qL<7r(j5-@Ey7 z$;Nmt)`9yc&l;jB^RrGJcn@};gH9dR5jQ^Q)M0%G_vBabmk_g-AHr$J8x5VD(TSQ+ ziIQvcK}9N<eU-m#$3klyYmMWVWlkm6&#Ic1dK_E}A{Ck-R5Lnkh$7!~QjhhNuF43n zsM#D_e0;uo@yl<nzIgJ-;@w*p@<5-%xnbJdh?EDK%u31&qe$(c2TU>A;>s92#diae z!=Vo$=ApS8=pOFLQOs3~ha&C8Ly_8imxm&4^V}VfG;Z-2k(%$^{aBImxh{_tDRC>( z-$2UCr%1hYnEB4-TaglXe*{*f7GL@!up%Yy$t%cd3cTchqexSp&E;Pz(rq|z50Od* z-1l1IrASd`@C+JJe~pmOrARHl%sH14sn7f&N7NLly_X?J)NFDVxBTBCCjSPEz4$jW z-|y!Cn7DD5pG|Ek|96PVzZqjM{w>V+yZN^gH}3Lp>)=^gKs`sGQQqw*a2o5zCfC;U zrv^(6zEscKJGf_b{sUraa0gs`@>pHnN67u}#OS5OU0v-W?h|+KeK&FAZu9%BgST{x znEZQ)r(EOm?<MXNclq}bH}3ND+!nX|j}Vjp0P&RHx%>x-`@~)T9C70=|7Z(8tCHZR zK2?uvDk;|H>T#lDDV37=$Ydoz51YK5=%^9YqhnGlp9(@<oWP`n{)dUlE5*91W{OcG zQPHes8rQ^Visxo-=-H$p)AjjyR+~0ktmr5SssSF7EX--sD{C|1f<)}5welGiM0Q!{ zSr-~QHl4XvHWVl3qe`ev!*!60Dh^bXn2u<Uj1wATzo%vFAdDyAEKA?|73f!>Ux9uF z`W5I`;N7Xfo&5H-m!?koKR@<r&(DoL<7=4t@81|b9tC(;!5hiwbQn~0xt!1EbF=j* SiR)pA_lo~*|NQ-Z7sr3W0+%WP literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/e7/e70322318525340469eb10d62df4231d.info b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/metadata/e7/e70322318525340469eb10d62df4231d.info new file mode 100644 index 0000000000000000000000000000000000000000..13e776c0d15437adb1b638e7b99375cf766abf71 GIT binary patch literal 619 zcmZ8f%TB{E5Ue=z75)O6CTW4(`cOqAgiw*n0ikFcZ&FK+9oY`0d_8Mhw6uHk?CfJ^ z{c7+_;9+hpx)nGWQ7pjX3v^iAGS-1m8|)2QR1Tcb%A<@~Gy<gfLB2&}J<PI@P`;48 zNx`wIk|YVB+YjANfsnD7+E#0AI&cMx1dqH6?)LwIClu}eg0j(v#nGWXvqT3iGESSH zvC18LlxS^)!v^gjc){>K$<j2NJWSJRmM8h_5qFb>&r;sx1oJ@c!LJb<vE#X-310U2 zEa|S+${8&snouBh4YK59kZ1&&f;~=1__g$<1Z&Hc&xWc-LVFToYa@CWD8YF~6mwxa zQ9nKjm9Rr;qmNzn9A7a-{n3?OuZ=@<8aGL@oa#byF(@u^JxKX?UvGSn8dIm?SNIm_ p+=^~No$#C5E07y((4eZ((k-|28OZMN5opiQvQ&+(Vk~b)qhDY`yw?B# literal 0 HcmV?d00001 diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/shadercompiler-UnityShaderCompiler.exe0.log b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/shadercompiler-UnityShaderCompiler.exe0.log index 5ab31efa..fdbb6333 100644 --- a/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Library/shadercompiler-UnityShaderCompiler.exe0.log @@ -3,15 +3,6 @@ Cmd: initializeCompiler Cmd: initializeCompiler Cmd: initializeCompiler Cmd: initializeCompiler -Cmd: compileSnippet - api=4 type=0 insize=725 outsize=858 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=4 type=1 insize=725 outsize=422 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: initializeCompiler -Cmd: initializeCompiler -Cmd: initializeCompiler -Cmd: initializeCompiler -Cmd: initializeCompiler Cmd: initializeCompiler Cmd: initializeCompiler Cmd: initializeCompiler diff --git a/Tugas2_PBD_MRizkiFonna_13516001_rev/Tugas2_PBD_MRizkiFonna_13516001_rev.sln b/Tugas2_PBD_MRizkiFonna_13516001_rev/Tugas2_PBD_MRizkiFonna_13516001_rev.sln new file mode 100644 index 00000000..f315eb58 --- /dev/null +++ b/Tugas2_PBD_MRizkiFonna_13516001_rev/Tugas2_PBD_MRizkiFonna_13516001_rev.sln @@ -0,0 +1,23 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{30A6BE1D-D50D-1E39-B42D-298B05672701}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {30A6BE1D-D50D-1E39-B42D-298B05672701}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {30A6BE1D-D50D-1E39-B42D-298B05672701}.Debug|Any CPU.Build.0 = Debug|Any CPU + {30A6BE1D-D50D-1E39-B42D-298B05672701}.Release|Any CPU.ActiveCfg = Release|Any CPU + {30A6BE1D-D50D-1E39-B42D-298B05672701}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(MonoDevelopProperties) = preSolution + StartupItem = Assembly-CSharp.csproj + EndGlobalSection +EndGlobal -- GitLab