Add CT3536 Games Programming
@ -0,0 +1,51 @@
|
||||
// Andrew Hayes, ID: 21321503
|
||||
// some of the comments here are quite obvious, and are just here for my own learning purposes
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class GameManager : MonoBehaviour {
|
||||
// inspector settings
|
||||
public GameObject mars;
|
||||
public GameObject phobos;
|
||||
public GameObject deimos;
|
||||
|
||||
// speed that the camera moves around mars on arrow keypress
|
||||
public float cameraSpeed = 5.0f;
|
||||
|
||||
|
||||
|
||||
// Start is called before the first frame update
|
||||
void Start() {
|
||||
// set position of mars object and point camera at it
|
||||
mars.transform.position = new Vector3(0,0,0);
|
||||
mars.transform.rotation = Quaternion.Euler(new Vector3(270,0,0)); // make it so mars' north pole points up
|
||||
Camera.main.transform.position = new Vector3(0,0,-100);
|
||||
Camera.main.transform.LookAt(mars.transform);
|
||||
|
||||
// before this can run, you need to manually add a rigid body with 0 angular velocity and no gravity in the UI
|
||||
// start mars rotating
|
||||
mars.GetComponent<Rigidbody>().AddTorque(new Vector3(0,20,0));
|
||||
}
|
||||
|
||||
void Update() {
|
||||
// rotate phobos and deimos a little each frame
|
||||
phobos.transform.RotateAround(mars.transform.position, Vector3.up, 32*Time.deltaTime);
|
||||
deimos.transform.RotateAround(mars.transform.position, Vector3.up, 8*Time.deltaTime);
|
||||
|
||||
// control the camera's position using the arrow keys
|
||||
if (Input.GetKey(KeyCode.LeftArrow)) {
|
||||
Camera.main.transform.RotateAround(mars.transform.position, Vector3.up, cameraSpeed);
|
||||
}
|
||||
else if (Input.GetKey(KeyCode.RightArrow)) {
|
||||
Camera.main.transform.RotateAround(mars.transform.position, Vector3.up, -cameraSpeed);
|
||||
}
|
||||
else if (Input.GetKey(KeyCode.UpArrow)) {
|
||||
Camera.main.transform.RotateAround(mars.transform.position, Vector3.right, cameraSpeed);
|
||||
}
|
||||
else if (Input.GetKey(KeyCode.DownArrow)) {
|
||||
Camera.main.transform.RotateAround(mars.transform.position, Vector3.right, -cameraSpeed);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 22f210c7c6581486b8236d0cbaf489c1
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
third/semester1/CT3536: Games Programming/labs/Weeks 1-3/lab2/deimos.jpg
Executable file
After Width: | Height: | Size: 498 KiB |
@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 534b5dbfc61794e58bfe9b52bc6389bf
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -0,0 +1,80 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &474245857029531064
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 474245857029765528}
|
||||
- component: {fileID: 474245857026374078}
|
||||
- component: {fileID: 474245857027341182}
|
||||
m_Layer: 0
|
||||
m_Name: deimos
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &474245857029765528
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 474245857029531064}
|
||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 44.02}
|
||||
m_LocalScale: {x: 0.05, y: 0.05, z: 0.05}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!33 &474245857026374078
|
||||
MeshFilter:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 474245857029531064}
|
||||
m_Mesh: {fileID: 4300000, guid: f7615ca7131634e47a6c5c0fed2c9cdc, type: 3}
|
||||
--- !u!23 &474245857027341182
|
||||
MeshRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 474245857029531064}
|
||||
m_Enabled: 1
|
||||
m_CastShadows: 1
|
||||
m_ReceiveShadows: 1
|
||||
m_DynamicOccludee: 1
|
||||
m_MotionVectors: 1
|
||||
m_LightProbeUsage: 1
|
||||
m_ReflectionProbeUsage: 1
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
- {fileID: 2100000, guid: f7615ca7131634e47a6c5c0fed2c9cdc, type: 3}
|
||||
- {fileID: 2100002, guid: f7615ca7131634e47a6c5c0fed2c9cdc, type: 3}
|
||||
m_StaticBatchInfo:
|
||||
firstSubMesh: 0
|
||||
subMeshCount: 0
|
||||
m_StaticBatchRoot: {fileID: 0}
|
||||
m_ProbeAnchor: {fileID: 0}
|
||||
m_LightProbeVolumeOverride: {fileID: 0}
|
||||
m_ScaleInLightmap: 1
|
||||
m_PreserveUVs: 0
|
||||
m_IgnoreNormalsForChartDetection: 0
|
||||
m_ImportantGI: 0
|
||||
m_StitchLightmapSeams: 0
|
||||
m_SelectedEditorRenderState: 3
|
||||
m_MinimumChartSize: 4
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 0
|
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 519c8392cfe9249b0a0c17b1d45fef5f
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
185
third/semester1/CT3536: Games Programming/labs/Weeks 1-3/lab2/deimos2.dae
Executable file
@ -0,0 +1,104 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f7615ca7131634e47a6c5c0fed2c9cdc
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: Deimos
|
||||
100002: Deimos1
|
||||
100004: //RootNode
|
||||
100006: mesh1
|
||||
400000: Deimos
|
||||
400002: Deimos1
|
||||
400004: //RootNode
|
||||
400006: mesh1
|
||||
2100000: deimos
|
||||
2100002: BackColor
|
||||
2300000: mesh1
|
||||
3300000: mesh1
|
||||
4300000: mesh1
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 1
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
previousCalculatedGlobalScale: 1
|
||||
hasPreviousCalculatedGlobalScale: 0
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 1
|
||||
copyAvatar: 0
|
||||
humanDescription:
|
||||
serializedVersion: 2
|
||||
human: []
|
||||
skeleton: []
|
||||
armTwist: 0.5
|
||||
foreArmTwist: 0.5
|
||||
upperLegTwist: 0.5
|
||||
legTwist: 0.5
|
||||
armStretch: 0.05
|
||||
legStretch: 0.05
|
||||
feetSpacing: 0
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 0
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||
animationType: 0
|
||||
humanoidOversampling: 1
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
third/semester1/CT3536: Games Programming/labs/Weeks 1-3/lab2/fobos.jpg
Executable file
After Width: | Height: | Size: 20 KiB |
@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b2929c369e79640e5a4ba8eb45aa10e8
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -0,0 +1,23 @@
|
||||
\relax
|
||||
\providecommand\babel@aux[2]{}
|
||||
\@nameuse{bbl@beforestart}
|
||||
\providecommand\hyper@newdestlabel[2]{}
|
||||
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
|
||||
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
|
||||
\global\let\oldnewlabel\newlabel
|
||||
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
|
||||
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
|
||||
\AtEndDocument{\ifx\hyper@anchor\@undefined
|
||||
\let\newlabel\oldnewlabel
|
||||
\fi}
|
||||
\fi}
|
||||
\global\let\hyper@last\relax
|
||||
\gdef\HyperFirstAtBeginDocument#1{#1}
|
||||
\providecommand\HyField@AuxAddToFields[1]{}
|
||||
\providecommand\HyField@AuxAddToCoFields[2]{}
|
||||
\babel@aux{english}{}
|
||||
\gdef\minted@oldcachelist{,
|
||||
default.pygstyle,
|
||||
66F8050977FABE130280777AB914A3C395426AEF6E2064180BF8083424B63623.pygtex}
|
||||
\@writefile{lol}{\contentsline {listing}{\numberline {1}{\ignorespaces \texttt {GameManagerScript.cs}\relax }}{2}{listing.caption.1}\protected@file@percent }
|
||||
\gdef \@abspage@last{2}
|
@ -0,0 +1,313 @@
|
||||
# Fdb version 4
|
||||
["lualatex"] 1695062007 "CT3536-Assignment-01.tex" "CT3536-Assignment-01.pdf" "CT3536-Assignment-01" 1695062009 0
|
||||
"../GameManagerScript.cs" 1695061431 2102 66f8050977fabe130280777ab914a3c3 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/dejavusansmono-bold.luc" 1693267235 349142 beeb4022ebe39bf1cef7ea7e195a49d1 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/dejavusansmono-boldoblique.luc" 1693267235 270960 d499821d644ddeb38b6eaefc6b60bf65 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/dejavusansmono-oblique.luc" 1693267235 270370 6582a655d717e58f0b0ae018dbedb47f ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/dejavusansmono.luc" 1693267235 367081 7b7b232593f5d2d0025b5200e019afcc ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/ebgaramond-bold.luc" 1686277868 565271 102f7abf5ba8e6a951c96a9598000c9c ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/ebgaramond-bolditalic.luc" 1686955617 457245 10150d5846ef25445a17bef515305c79 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/ebgaramond-italic-variablefont-wght.luc" 1686955618 379982 cf0b75ee0a94404687f439d35098737f ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/ebgaramond-variablefont-wght.luc" 1686955616 417731 6bdfc6fa73bb62237d91872e9a2a48a5 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/lmroman10-bold.luc" 1686277867 128404 7b247c95f5e2263e0825b1a0add09935 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/lmroman10-regular.luc" 1686277867 127321 ce22d63c708dd098cf44b49de00c64c1 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/streams/ebgaramondboldttf-1.luc" 1686277874 568557 07f28926432703dfd9dc09336ea90fd7 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/streams/ebgaramondvariablefontwghtttf-1.luc" 1686955619 566170 2cfd50f38d6ed40677465fa23061fe92 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/names/luaotfload-lookup-cache.luc" 1695061760 7103 43a57c2ab2b586d80904015002fd4584 ""
|
||||
"/home/andrew/.texlive2023/texmf-var/luatex-cache/generic/names/luaotfload-names.luc.gz" 1694072199 345594 5d7d94f5520238c44fabeaaf4592bf51 ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmex10.tfm" 1136768653 992 662f679a0b3d2d53c1b94050fdaa3f50 ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmmi10.tfm" 1136768653 1528 abec98dbc43e172678c11b3b9031252a ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmmi5.tfm" 1136768653 1508 3b32edd0d68f6498a5a375e78f9edc5e ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm" 1136768653 1512 f21f83efb36853c0b70002322c1ab3ad ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm" 1136768653 1520 eccf95517727cb11801f4f1aee3a21b4 ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmr10.tfm" 1136768653 1296 45809c5a464d5f32c8f98ba97c1bb47f ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmr5.tfm" 1136768653 1220 ad296dff3c8796c18053ab7b9f86ad7c ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmr6.tfm" 1136768653 1300 b62933e007d01cfd073f79b963c01526 ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmr8.tfm" 1136768653 1292 21c1c5bfeaebccffdb478fd231a0997d ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm" 1136768653 1124 6c73e740cf17375f03eec0ee63599741 ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmsy5.tfm" 1136768653 1112 14d5d5f6bd3c949edecb5b872f295553 ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm" 1136768653 1116 933a60c408fc0a863a92debe84b2d294 ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm" 1136768653 1120 8b7d695260f3cff42e636090a8002094 ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb" 1248133631 37166 8ab3487cbe3ab49ebce74c29ea2418db ""
|
||||
"/opt/texlive/2023/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy6.pfb" 1248133631 32587 1788b0c1c5b39540c96f5e42ccd6dae8 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1461363279 71627 94eb9990bed73c364d7f53f960cc8c5b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/babel-english/english.ldf" 1496785618 7008 9ff5fdcc865b01beca2b0fe4a46231d4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/babel/babel.sty" 1680034822 151578 01e8b46843d81abdfcc7dfbcd0188e2f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/babel/locale/en/babel-en.ini" 1661803479 3966 caeee5a9e5771d4446aa1ca9015ba1b2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/babel/locale/en/babel-english.tex" 1498512262 336 ed676b5e7dfd862bc78d634f6a973f37 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/babel/luababel.def" 1680034822 66853 4c507ae0b3dcd62dbf04c708ec50bc4a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1576625341 40635 c40361e206be584d448876bba8a64a3b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/bitset/bitset.sty" 1576016050 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/catchfile/catchfile.sty" 1576016007 8622 63834878edeb14dd71d58d8f22bc3e06 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/etexcmds/etexcmds.sty" 1576625273 7734 b98cbb34c81f667027c1e3ebdbfce34b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty" 1576625223 8371 9d55b8bd010bc717624922fb3477d92e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/iftex/ifluatex.sty" 1572645307 492 1994775aa15b0d1289725a0b1bbc2d4c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/iftex/iftex.sty" 1644112042 7237 bdd120a32c8fdb4b433cf9ca2e7cd98a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty" 1575499628 8356 7bbb2c2373aa810be568c29e333da8ed ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/intcalc/intcalc.sty" 1576625065 31769 002a487f55041f8e805cfbf6385ffd97 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576878844 5412 d5a2436094cd7be85769db90f29250a6 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty" 1600895880 17859 4409f8f50cd365c68e684407e5350b1b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pdfescape/pdfescape.sty" 1576015897 19007 15924f7228aca6c6d184b115f4baa231 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.lua" 1593380077 9447 5e9f52f1871707a5d27dea360afbe4cb ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty" 1593379760 20089 80423eac55aa175305d35b49e04fe23b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1673816307 1016 1c2b89187d12a2768764b83b4945667c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1601326656 43820 1fef971b75380574ab35a0d37fd92608 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1601326656 19324 f4e4c6403dd0f1605fd20ed22fa79dea ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1601326656 6038 ccb406740cc3f03bbfb58ad504fe8c27 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1673816307 6911 f6d4cf5a3fef5cc879d668b810e82868 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1601326656 4883 42daaf41e27c3735286e23e48d2d7af9 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1601326656 2544 8c06d2a7f0f469616ac9e13db6d2f842 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1601326656 44195 5e390c414de027626ca5e2df888fa68d ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1601326656 17311 2ef6b2e29e2fc6a2fc8d6d652176e257 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1601326656 21302 788a79944eb22192a4929e46963a3067 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1673816307 9691 3d42d89522f4650c2f3dc616ca2b925e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1601326656 33335 dd1fa4814d4e51f18be97d88bf0da60c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1601326656 2965 4c2b1f4e0826925746439038172e5d6f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex" 1601326656 5196 2cc249e0ee7e03da5f5f6589257b1e5b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1673816307 20821 7579108c1e9363e61a0b1584778804aa ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1601326656 35249 abd4adf948f960299a4b3d27c5dddf46 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1673816307 22012 81b34a0aa8fa1a6158cc6220b00e4f10 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1601326656 8893 e851de2175338fdf7c17f3e091d94618 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1673816307 5628 dc0ee4ba7f3e40acae5600067ce833de ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex" 1601326656 321 cdd11262840e01e25374a2d458f15e99 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex" 1601326656 1319 0b2de5126c6cbc295f0eb77f7344b34d ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex" 1601326656 325 36322b0789619b270aec5993d5a9ed08 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1608933718 11518 738408f795261b70ce8dd47459171309 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1673816307 186782 af500404a9edec4d362912fe762ded92 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex" 1601326656 8843 5533436db3e30fbad1e0440db6027dac ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex" 1601326656 7474 f05a7223b140f230922562ac6a9fede5 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/luamath/pgf/luamath/functions.lua" 1557692582 14534 24f5432729da1295a13a8876ac61d778 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/luamath/pgf/luamath/parser.lua" 1557692582 16757 336fe4409a585c3267f3f39421c9cd64 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/luamath/pgflibraryluamath.code.tex" 1601326656 22123 b6c6ed0d97bab39efaa4938185741267 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex" 1608933718 85938 8e4ba97c5906e1c0d158aea81fe29af7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1601326656 32995 ac577023e12c0e4bd8aa420b2e852d1a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex" 1673816307 14526 4bc184b12436aa7f6490b2d2036870ef ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfint.code.tex" 1557692582 3063 8c415c68a0f3394e45cfeca0b65f6ee6 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex" 1673816307 949 cea70942e7b7eddabfb3186befada2e6 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex" 1673816307 13270 2e54f2ce7622437bf37e013d399743e3 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex" 1673816307 104717 9b2393fbf004a0ce7fa688dbce423848 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1601326656 10165 cec5fa73d49da442e56efc2d605ef154 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1601326656 28178 41c17713108e0795aac6fef3d275fbca ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1673816307 9649 85779d3d8d573bfd2cd4137ba8202e60 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1601326656 3865 ac538ab80c5cf82b345016e474786549 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1557692582 3177 27d85c44fbfe09ff3b2cf2879e3ea434 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1621110968 11024 0179538121bc2dba172013a3ef89519f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1673816307 7890 0a86dbf4edfd88d022e0d889ec78cc03 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1601326656 3379 781797a101f647bab82741a99944a229 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1601326656 92405 f515f31275db273f97b9d8f52e1b0736 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex" 1673816307 37466 97b0a1ba732e306a1a2034f5a73e239f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex" 1601326656 8471 c2883569d03f69e8e1cabfef4999cfd7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1673816307 71742 3da44a8be6626eef1c400c68776c7a0f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1673816307 21211 1e73ec76bd73964d84197cc3d2685b01 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1601326656 16121 346f9013d34804439f7436ff6786cef7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1673816307 44792 271e2e1934f34c759f4dedb1e14a5015 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/pgf.revision.tex" 1673816307 114 e6d443369d0673933b38834bf99e422d ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg" 1601326656 926 2963ea0dcf6cc6c0a770b69ec46a477b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1673816307 5542 32f75a31ea6c3a7e1148cd6d5e93dbb7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-luatex.def" 1673816307 13255 83878f3f820beccc0dd1c2683dabc65e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1673816307 61351 bc5f86e0355834391e736e97a61abced ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1601326656 1896 b8e0ca0ac371d74c0ca05583f6313c91 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1601326656 7778 53c8b5623d80238f6a20aa1df1868e63 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex" 1673816307 24033 d8893a1ec4d1bfa101b172754743d340 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex" 1673816307 39784 414c54e866ebab4b801e2ad81d9b21d8 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex" 1673816307 37433 940bc6d409f1ffd298adfdcaf125dd86 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex" 1673816307 4385 510565c2f07998c8a0e14f0ec07ff23c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex" 1673816307 29239 22e8c7516012992a49873eff0d868fed ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def" 1673816307 6950 8524a062d82b7afdc4a88a57cb377784 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex" 1452211337 22701 5fab7b8ebb90b053dc067d1bd37e43c2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex" 1422740226 3047 aa82404aec57311271f4991c44bd71dc ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua.code.tex" 1620507943 2931 5d52092da9e839accd7c9026062fe5c3 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex" 1496704190 23537 54be8160344d894595f6d145b1311658 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex" 1262481251 4288 b8d6247899b21e3bb66bb11b24d30f2c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex" 1452211337 13828 11d1b09335a4a8baa693dd1e6cac3edf ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex" 1496704190 24373 6544c1554e5da33118301011eb03058d ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex" 1364427911 18861 7dc35832c8ccea3aa73cdcd75ec0a60b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots.lua" 1422740226 1869 8be85c3d3ef262dc4843803302a5a1be ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/binary.lua" 1496704190 1659 196114a5b7c23fa09f4d3153860f8ad7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/colormap.lua" 1496704190 4269 b5852de7ab0bc2ecd0420a7b075f7988 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/meshplothandler.lua" 1496704190 8766 e6bfda073fbc10a4eeb41746f083987e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/pgfplotstexio.lua" 1496704190 17662 1a9050276f4aa78fe4b629db81e2e1ce ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/pgfplotsutil.lua" 1496704190 3158 9832525b418b8da2930e81bd1d8ba242 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/plothandler.lua" 1496704190 30032 3689030d30d844e57bff23a0ef50d174 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/streamer.lua" 1496704190 6007 02edeeb6ed37fcdd94c12f2267916fcc ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/prepcontour.lua" 1620507943 24802 131c97cd8404ee1040c1b409f0b80f20 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex" 1583276309 83469 f77a7d8a23834d4c2472f8dba8e67bff ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex" 1583276309 12347 43d867ea29e34d528123d9ef750aa146 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfutil-common-lists.tex" 1496704190 8008 3bb2d07671e6afab7dcb90dfaec572a4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex" 1620507943 485274 aafeb7052fbed4c8aba6fcc36c94ea72 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex" 1452211337 22428 72578a4c9324bc5dfafe23fe64f64024 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex" 1583276309 12489 859c23df41fb9067128ef5a64b01c0a4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex" 1583276309 3533 973f376afa5a4526f16b11630b9931b4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex" 1621284213 520 2a55e10851bbb34fb49a8e1d6b50a09b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex" 1523216742 123680 d33fda4929d7200c3e6f0ec83c006aef ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex" 1583276309 367035 be5ad6faf030b5e07b899b712359f9d2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex" 1470951798 19944 7957349fbe31c4e8dea9de4cd41cb086 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex" 1496704190 133871 7247b31742a2240343a6739cb76d6821 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex" 1620507943 25239 bf1615252744653354985789b73e7404 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex" 1620507943 120954 bdf135670013db80411b2fb0f95876ac ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex" 1620507943 26393 a7d9bbecdd0db20d652c909dac892e25 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex" 1583276309 91244 1a0e9e49b7a2d10d1b1a610306ba4f8c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-luatex.def" 1496704190 6218 14d6dd7e59196606b7d0277cb5ea69af ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex" 1351287374 3095 c82d281b748902a65be2ccca97360b11 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex" 1430688073 23050 a369aa910ef860a3621fe0459faa335c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex" 1346285630 26859 7a4ee9d206fb0a0daa0d3108445afb57 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex" 1380839021 23958 1b96260863091af1669c3a38b1c4c9af ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex" 1496704190 88956 018b2512ef27998e97af72e8b1dcdbd5 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex" 1620507943 71792 dba1b75b15201895eb36f142f13b3238 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex" 1312159636 3286 c17079ba50483e1ac1721268ea016041 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/stringenc/stringenc.sty" 1575152242 21514 b7557edcee22835ef6b03ede1802dad4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/unicode-data/CaseFolding.txt" 1663444472 84690 9d8a5659c16d531f765d773766ccb5b0 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/unicode-data/PropList.txt" 1663444472 132360 def86c24016f2b0b69ac18d444899b69 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/unicode-data/ScriptExtensions.txt" 1663444472 21971 6478741a243fe29af99ecfe1f86a639e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/unicode-data/Scripts.txt" 1663444472 184112 80f56318409237ef8b33706538b49c5f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/unicode-data/SpecialCasing.txt" 1663444472 16832 4ef53dbf7dd898aac12179704a6f9a70 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/unicode-data/UnicodeData.txt" 1663444472 1913704 cf389823b6ff1d0e42b8138e3661d516 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/unicode-data/WordBreakProperty.txt" 1663444472 109110 cacb2dba0a6779204946c37ce6be52d2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty" 1576624663 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/xkeyval/xkeyval.tex" 1655411236 19231 27205ee17aaa2902aea3e0c07a3cfc65 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/xkeyval/xkvutils.tex" 1655411236 7677 9cb1a74d945bc9331f2181c0a59ff34a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/xstring/xstring.sty" 1544223003 123 a302f2c651a95033260db60e51527ae8 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/generic/xstring/xstring.tex" 1673816135 48215 374fa42173896b227f2f50bc75dfda91 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/amsmath/amsgen.sty" 1654720880 4173 c989ee3ced31418e3593916ab26c793a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/auxhook/auxhook.sty" 1576625391 3935 57aa3c3e203a5c2effb4d2bd2efbc323 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/article.cls" 1667332637 20144 d5ecf0a5140c8d8d8b72cbe86e320eff ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/atbegshi-ltx.sty" 1667332637 3052 30236f0cc243a8651b82240dfd2e8b9d ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty" 1667332637 2462 8ce5f9a9c63002f2c1af03c262cf29af ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/fontenc.sty" 1654720880 5119 4ce42f43368f652f9c9522d943cce8e4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/ifthen.sty" 1654720880 5319 48d7f3cfa322abd2788e3c09d624b922 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/ltluatex.lua" 1667332637 24386 83c652de0f414f3e99ca4bc3359bc2f2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/size11.clo" 1667332637 8464 63bf71cc1214ffdd38288da73a7ca182 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/textcomp.sty" 1654720880 2894 f2f8ee7d4fb94263f9f255fa22cab2d3 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/base/ts1cmr.fd" 1667332637 2430 8418b3f1835e588625becbcac4dbce56 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/caption/caption.sty" 1678653221 55778 14d5c99aa26410e440820bb9ea5b8b3a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/caption/caption3.sty" 1678653221 71836 1a735454ad10692452eb2f2fc37f3865 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/changepage/changepage.sty" 1256071977 4523 a9044e2dc40e764dac60d2acda7ae919 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/datetime/datetime-defaults.sty" 1427500626 4105 4c80eaed8cd4f9a80cc6244c0adeb81f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/datetime/datetime.sty" 1427500626 27587 b023ffe1328fa89e7f133201d87029de ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1579991033 13886 d1306dcf79a944f6988e688c1785f9ce ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/etoolbox/etoolbox.sty" 1601931149 46845 3b58f70c6e861a13d927bff09d35ecbc ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty" 1674162139 43712 b5e8951fc13f42e748a253743534321f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/float/float.sty" 1137110151 6749 16d2656a1984957e674b149555f1ea1d ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fc-english.def" 1580337424 14353 f66b7dd28616119c2519cd5cc4dcae14 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fcnumparser.sty" 1580337424 12389 43a81443714469abac77ce09f44ad2e2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fcprefix.sty" 1580337424 12098 5c732241af77b5f0e56e640b7d538395 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fmtcount.sty" 1582668197 30872 ed70d543c537f19c96fc753321f1c3cc ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty" 1642282977 150585 e7858b29d466f38afac90db54bb48055 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.cfg" 1532898934 549 c4adac819276241fea8eb79c5ab7b99e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.lua" 1642282977 3021 d020be140dbb56718a42324548f9a72e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.sty" 1642282977 1656 7e824878bad4df5a3e8bba4e463d9126 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/framed/framed.sty" 1338588508 22449 7ec15c16d0d66790f28e90343c5434a3 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/fvextra/fvextra.sty" 1669926846 87411 b98a80ab82c91364926f170ef842a8b5 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/graphics-cfg/color.cfg" 1459978653 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1465944070 1224 978390e9c2234eab29404bc21b268d1e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/graphics-def/luatex.def" 1663965824 19478 ff26a264ed286e649e9023efac2574b2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/graphics/graphics.sty" 1654720880 18387 8f900a490197ebaf93c02ae9476d4b09 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/graphics/graphicx.sty" 1654720880 8010 a8d949cbdbc5c983593827c9eec252e1 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/graphics/keyval.sty" 1654720880 2671 7e67d78d9b88c845599a85b2d41f2e39 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/graphics/mathcolor.ltx" 1667332637 2885 9c645d672ae17285bba324998918efd8 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/graphics/trig.sty" 1654720880 4023 293ea1c16429fc0c4cf605f4da1791a9 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/hycolor/hycolor.sty" 1580250785 17914 4c28a13fc3d975e6e81c9bea1d697276 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/hyperref/hluatex.def" 1675889938 51238 1a57230c152f9f06d30fa122037097c3 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/hyperref/hyperref.sty" 1675889938 223129 4edf043af471f3251c66e432cfa22987 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/hyperref/nameref.sty" 1675889938 12947 1ce831528e963a8568de1f4d67cfb982 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/hyperref/pd1enc.def" 1675889938 14249 d947c5c09f3af04ae2f37fc11c7ac2f6 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/hyperref/puenc.def" 1675889938 117125 aa115cac3914abcf3769f370e6325117 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/ifplatform/ifplatform.sty" 1507930826 3910 e04f6a6d983bdbdb024917b7ccc80262 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1655478651 22555 6d8e155cfef6d82c3d5c742fea7c992e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty" 1665067230 13815 760b0c02f691ea230f5359c4e1de23a7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-luatex.def" 1680206705 30177 16441a1f4457c6bd6c1c2459a5679465 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-luatex.lua" 1680206705 3429 925a502d2a5031907945977362970a18 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.lua" 1673989714 16940 14e757e1be9764a86135ad5b4b883d66 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty" 1680206705 6107 315d4fb3eadc8324d4c14694285a7ca1 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/l3packages/xparse/xparse.sty" 1675461949 6812 3c152a1c8d562d7b7291c4839b61a5c3 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/latexconfig/lualatexquotejobname.lua" 1308175312 1031 977f79ff10b802fc398926378bec58e9 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty" 1575499565 5766 13a9e8766c47f30327caf893ece86ac8 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/lineno/lineno.sty" 1674162155 152262 eb3bf7a579d4a34a0ed4f6b445bafbd8 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype-luatex.def" 1678741534 38850 c4d1546fd4ecce96fc7ec1a7d7755ad7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.cfg" 1678741534 26842 05a01d67d23e805520393a049533b8c0 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.lua" 1678741534 6496 0ccd6caa913c646ebb86ac0582b83c85 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.sty" 1678741534 98531 f79ec363f3014ada2cb766715926ecc9 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/microtype/mt-EBGaramond.cfg" 1678741534 33046 15ffed42f6778e4254e56f68dc215206 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/microtype/mt-cmr.cfg" 1678741534 22906 7a8d9f8766e60f694cdde7648421c2ab ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/minted/minted.sty" 1670878866 49064 eb9511810c918a5ce7899d9d4f0fce29 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1601326656 1090 bae35ef70b3168089ef166db3e66f5b2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1673816307 373 00b204b1d7d095b892ad31a7494b0373 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1601326656 21013 f4ff83d25bb56552493b030f27c075ae ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1601326656 989 c49c8ae06d96f8b15869da7428047b1e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty" 1601326656 339 c2e180022e3afdb99c7d0ea5ce469b7d ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/math/pgfmath.sty" 1601326656 306 c56a323ca5bf9242f54474ced10fca71 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty" 1601326656 443 8c872229db56122037e86bcda49e14f3 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgffor.sty" 1601326656 348 ee405e64380c11319f0e249fed57e6c5 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty" 1601326656 274 5ae372b7df79135d240456a1c6f2cf9a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty" 1601326656 325 f9f16d12354225b7dd52a3321f085955 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/pgfplots/pgfplots.sty" 1496704190 4904 ee78b44e85d6fccf08cd99370557481e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/refcount/refcount.sty" 1576624809 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1657483315 9714 ba3194bd52c8499b3f1e3eb91d409670 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/titlesec/titlesec.sty" 1625518490 48833 3b7b4cfab1a3d15596bfd3772a77ab65 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/tools/calc.sty" 1654720880 10214 de3e21cfc0eccc98ca7f8dac0ef263d2 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/tools/shellesc.sty" 1654720880 4118 0aa319c56935d7d217b6a8bf300b81b7 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/upquote/upquote.sty" 1334873510 1048 517e01cde97c1c0baf72e69d43aa5a2e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/url/url.sty" 1388531844 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/xcolor/xcolor.sty" 1655066402 56148 51a9a8571c07b9921892ae11063ae853 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/latex/xkeyval/xkeyval.sty" 1655411236 4937 4ce600ce9bd4ec84d0250eb6892fcf4f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lua-uni-algos/lua-uni-case.lua" 1645915452 1921 020c660fdc1d4c83ffebb059fead7b51 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lua-uni-algos/lua-uni-normalize.lua" 1645915452 21269 eb4154856f0afe9e8d886dbf6922dcc6 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lua-uni-algos/lua-uni-parse.lua" 1645915452 2115 596f0e8384e97c26c78a8e88c65a7843 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-basic-merged.lua" 1664913323 130531 e7ebb315e5c88c5f863190ed33bd5d8f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-basic.lua" 1664913323 2685 d5211e092b0fc820d9302b340f4eb3f4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-compat.lua" 1367794330 603 398583cb619d20952d67edcedae41608 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-extended-merged.lua" 1664913323 137684 457efa8395060ceb53ebf1b36a9e3c51 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-extended.lua" 1664913323 5000 599f5ca98e2f4bf542bfff66ab09730f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs.lua" 1664913323 3780 48080a67ba547f05be752268d41bbb86 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/fontloader-2022-10-03.lua" 1664913378 883645 f5384fb6e665b4c3af844e55c9890073 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/fontloader-basics-gen.lua" 1645997189 12745 4bc43036e9796fccb0b8869f4b05bf2e ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua" 1664913378 34239 c869a8e7d2242a02b0e10928c0cdc59c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-bcp47.lua" 1664913378 3674 ad13e5d6b82aff53a36384fd239c5d6c ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-case.lua" 1664913378 16116 3d55feb55802d40830807a7459cb345a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-colors.lua" 1664913378 18372 4ad76dd049092806e62e93437674f003 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua" 1664913378 31223 18bbb7350d32b6409b7c331542a886e6 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua" 1664913378 134172 6da3d95f9011b8320dab5c5a32a28978 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-embolden.lua" 1664913378 1004 2abe4a85a428d79cae1260908a492477 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-fallback.lua" 1664913378 4047 34996c5eb80691e8e9969145a1c63fa8 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-features.lua" 1664913378 33529 edaf61a299497abb089f9f160acaf5ba ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-define.lua" 1664913378 19011 ed98bd38d43fbc67e6140c343475d8dd ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-plug.lua" 1664913378 42312 8b3b69f4c5e573212951c54336b6c75b ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-cff2.lua" 1664913378 14285 fcfd3f0bb4d8a97872e4ff049eaf2290 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-t2-writer.lua" 1664913378 4050 ef26d7bcaf2c943a112f8e07f44b2c18 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-ttf.lua" 1664913378 20526 fa67cbc8ccea0ba0e23b3ea9b0ca1a38 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-init.lua" 1664913378 19746 fdca1ee9ddbc4324dace4d89043ee1ff ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-letterspace.lua" 1664913378 20268 e950c4f3d6e466b7e59fd8d1d2598fa6 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua" 1664913378 10733 7298c7dd711f8480f4bca2aef5df90af ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-log.lua" 1664913378 11323 dee4da9bd54f1a5f7453826b8ecd70ea ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-main.lua" 1609451516 275 b19c9cc34cf1d676c39f872cfb41aef6 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-multiscript.lua" 1664913378 15068 3436f18db0d08ee567e5051995a3165f ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-notdef.lua" 1664913378 12224 256afb391eb4010d3b69e5af1abebb7a ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-parsers.lua" 1664913378 30436 0dc623da7513746ee0e0d354505187b3 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-resolvers.lua" 1664913378 11209 2b21b7b0f08aa03ca0d527331718dc13 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-scripts.lua" 1664913378 2506 857b55175273a8277bab059b1bbfa6a4 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-status.lua" 1664913378 6317 32eb99450faf10074d18e91c7c841aec ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-suppress.lua" 1664913378 2582 a8b6b097f446ac2c83c2d0af7d9ab349 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-szss.lua" 1664913378 6309 87ac61c8fad7650fa6866518212f3a38 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-tounicode.lua" 1664913378 7528 9bc62ed441ed23b5222925b019479f78 ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-unicode.lua" 1664913378 7917 30f5b1073daa0c6e85ca1db843fbd9cd ""
|
||||
"/opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload.lua" 1664913378 13565 83bac25a8cf8630acccd6a7f8bb9f791 ""
|
||||
"/opt/texlive/2023/texmf-var/fonts/map/pdftex/updmap/pdftex.map" 1680999352 4622740 811bcb14086ef44963268b3907697b11 ""
|
||||
"/opt/texlive/2023/texmf-var/tex/generic/config/language.dat" 1680999354 6655 5f40b74f020c9416846c3da73f38a7c0 ""
|
||||
"/opt/texlive/2023/texmf-var/web2c/luahbtex/lualatex.fmt" 1680999502 11878012 a43bbaf19f32bea61ba4e54b80cb31a1 ""
|
||||
"/usr/share/fonts/TTF/DejaVuSansMono-Bold.ttf" 1603291686 331992 ee45bcafa9fa4ac621e7ce2de5f931db ""
|
||||
"/usr/share/fonts/TTF/DejaVuSansMono-Oblique.ttf" 1603291686 251932 ebc68b684a448cc84dd1744d01e14340 ""
|
||||
"/usr/share/fonts/TTF/DejaVuSansMono.ttf" 1603291686 340712 c2356fc49835b1870dcc5b07799b4920 ""
|
||||
"/usr/share/fonts/TTF/EB_Garamond/EBGaramond-Bold.ttf" 1663824430 450648 fb6f0218e0b0d777e67073c0f403eac7 ""
|
||||
"/usr/share/fonts/TTF/EB_Garamond/EBGaramond-VariableFont_wght.ttf" 1663824430 742004 5ee06786be56317f92f43e8ace58330d ""
|
||||
"CT3536-Assignment-01.aux" 1695062009 916 daf9f7ab1f30288547382d31b98e479c "lualatex"
|
||||
"CT3536-Assignment-01.out" 1695062008 0 d41d8cd98f00b204e9800998ecf8427e "lualatex"
|
||||
"CT3536-Assignment-01.tex" 1695061898 2004 879144044228f61ae0b75915f206179c ""
|
||||
"_minted-CT3536-Assignment-01/66F8050977FABE130280777AB914A3C395426AEF6E2064180BF8083424B63623.pygtex" 1695062007 6220 270704e92c78ef2d145d8f5cb77a7876 ""
|
||||
"_minted-CT3536-Assignment-01/default.pygstyle" 1695062007 6428 74aba51736a5bc6590f8f7dd413c6f27 ""
|
||||
(generated)
|
||||
"CT3536-Assignment-01.aux"
|
||||
"CT3536-Assignment-01.log"
|
||||
"CT3536-Assignment-01.out"
|
||||
"CT3536-Assignment-01.pdf"
|
||||
(rewritten before read)
|
@ -0,0 +1,534 @@
|
||||
PWD /home/andrew/edu/third/semester1/CT3536: Games Programming/labs/Lab 2 - Fear and Dread/latex
|
||||
INPUT /opt/texlive/2023/texmf-var/web2c/luahbtex/lualatex.fmt
|
||||
INPUT ./CT3536-Assignment-01.tex
|
||||
OUTPUT CT3536-Assignment-01.log
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/latexconfig/lualatexquotejobname.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/ltluatex.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-main.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-init.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-basic.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-basic-merged.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-compat.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-extended.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lualibs/lualibs-extended-merged.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-log.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/fontloader-basics-gen.lua
|
||||
OUTPUT /home/andrew/.texlive2023/texmf-var/m_t_x_t_e_s_t.tmp
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-parsers.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-status.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/fontloader-2022-10-03.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-fallback.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-multiscript.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-scripts.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/ScriptExtensions.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/Scripts.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-unicode.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/UnicodeData.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/UnicodeData.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/PropList.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/WordBreakProperty.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/SpecialCasing.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lua-uni-algos/lua-uni-case.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lua-uni-algos/lua-uni-parse.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/CaseFolding.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-colors.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-resolvers.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-features.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/lua-uni-algos/lua-uni-normalize.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/UnicodeData.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-define.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-cff2.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-t2-writer.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-ttf.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-harf-plug.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-letterspace.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-embolden.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-notdef.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/UnicodeData.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/unicode-data/PropList.txt
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-suppress.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-szss.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-tounicode.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-case.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/luatex/luaotfload/luaotfload-bcp47.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/size11.clo
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/size11.clo
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/names/luaotfload-names.luc.gz
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/lmroman10-regular.luc
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel/babel.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel/babel.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel/babel.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel/luababel.def
|
||||
INPUT /opt/texlive/2023/texmf-var/tex/generic/config/language.dat
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel/luababel.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel-english/english.ldf
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel-english/english.ldf
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel/locale/en/babel-english.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel/locale/en/babel-english.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/babel/locale/en/babel-en.ini
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/hluatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/hyperref/hluatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/stringenc/stringenc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/stringenc/stringenc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/stringenc/stringenc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/changepage/changepage.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/changepage/changepage.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/changepage/changepage.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-luatex.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fontspec/fontspec.cfg
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/lmroman10-bold.luc
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/minted/minted.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/minted/minted.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/minted/minted.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fvextra/fvextra.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fvextra/fvextra.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fvextra/fvextra.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/upquote/upquote.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/upquote/upquote.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/upquote/upquote.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/textcomp.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/textcomp.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/textcomp.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/lineno/lineno.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/lineno/lineno.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/lineno/lineno.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/tools/calc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/tools/calc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/tools/calc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/tools/shellesc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/tools/shellesc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/tools/shellesc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/tools/shellesc.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/ifplatform/ifplatform.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/ifplatform/ifplatform.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/ifplatform/ifplatform.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/catchfile/catchfile.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/catchfile/catchfile.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/catchfile/catchfile.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/iftex/ifluatex.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/iftex/ifluatex.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/iftex/ifluatex.sty
|
||||
INPUT ./CT3536-Assignment-01.w18
|
||||
INPUT ./CT3536-Assignment-01.w18
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/xstring/xstring.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/xstring/xstring.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/xstring/xstring.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/xstring/xstring.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/framed/framed.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/framed/framed.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/framed/framed.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/float/float.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/float/float.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/float/float.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics-def/luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics-def/luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/pgf.revision.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/pgf.revision.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfint.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/binary.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/pgfplotsutil.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/luamath/pgf/luamath/parser.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/luamath/pgf/luamath/functions.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/plothandler.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/meshplothandler.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/colormap.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/streamer.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/pgfplots/pgfplotstexio.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfutil-common-lists.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/luamath/pgflibraryluamath.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/luamath/pgflibraryluamath.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/luamath/pgflibraryluamath.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-luatex.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgfplots/lua/prepcontour.lua
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/datetime/datetime.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/datetime/datetime.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/datetime/datetime.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fmtcount.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fmtcount.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fmtcount.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/xkeyval/xkeyval.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/xkeyval/xkeyval.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/xkeyval/xkeyval.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/xkeyval/xkeyval.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/generic/xkeyval/xkvutils.tex
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fcprefix.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fcprefix.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fcprefix.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fcnumparser.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fcnumparser.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fcnumparser.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fc-english.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/fmtcount/fc-english.def
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/datetime/datetime-defaults.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/datetime/datetime-defaults.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/datetime/datetime-defaults.sty
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/names/luaotfload-lookup-cache.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/ebgaramond-variablefont-wght.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/ebgaramond-bolditalic.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/ebgaramond-bold.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/ebgaramond-italic-variablefont-wght.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/dejavusansmono.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/dejavusansmono-boldoblique.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/dejavusansmono-bold.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/otl/dejavusansmono-oblique.luc
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT ./CT3536-Assignment-01.aex
|
||||
INPUT ./CT3536-Assignment-01.aex
|
||||
INPUT ./CT3536-Assignment-01.aux
|
||||
INPUT ./CT3536-Assignment-01.aux
|
||||
OUTPUT CT3536-Assignment-01.aux
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/ts1cmr.fd
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/base/ts1cmr.fd
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/mt-EBGaramond.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/mt-EBGaramond.cfg
|
||||
INPUT ./CT3536-Assignment-01.out
|
||||
INPUT ./CT3536-Assignment-01.out
|
||||
INPUT ./CT3536-Assignment-01.out
|
||||
INPUT ./CT3536-Assignment-01.out
|
||||
INPUT ./CT3536-Assignment-01.out
|
||||
OUTPUT CT3536-Assignment-01.out
|
||||
OUTPUT CT3536-Assignment-01.pdf
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmmi10.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmex10.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmr10.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/mt-cmr.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/tex/latex/microtype/mt-cmr.cfg
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmr8.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmr6.tfm
|
||||
INPUT ./_minted-CT3536-Assignment-01/default.pygstyle
|
||||
INPUT ./_minted-CT3536-Assignment-01/default.pygstyle
|
||||
INPUT ./_minted-CT3536-Assignment-01/default.pygstyle
|
||||
INPUT ../GameManagerScript.cs
|
||||
INPUT ./_minted-CT3536-Assignment-01/66F8050977FABE130280777AB914A3C395426AEF6E2064180BF8083424B63623.pygtex
|
||||
INPUT ./_minted-CT3536-Assignment-01/66F8050977FABE130280777AB914A3C395426AEF6E2064180BF8083424B63623.pygtex
|
||||
INPUT ./_minted-CT3536-Assignment-01/66F8050977FABE130280777AB914A3C395426AEF6E2064180BF8083424B63623.pygtex
|
||||
INPUT ./_minted-CT3536-Assignment-01/66F8050977FABE130280777AB914A3C395426AEF6E2064180BF8083424B63623.pygtex
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmmi5.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmsy5.tfm
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/tfm/public/cm/cmr5.tfm
|
||||
INPUT /opt/texlive/2023/texmf-var/fonts/map/pdftex/updmap/pdftex.map
|
||||
INPUT ./CT3536-Assignment-01.aux
|
||||
INPUT ./CT3536-Assignment-01.out
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/streams/ebgaramondvariablefontwghtttf-1.luc
|
||||
INPUT /home/andrew/.texlive2023/texmf-var/luatex-cache/generic/fonts/streams/ebgaramondboldttf-1.luc
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb
|
||||
INPUT /opt/texlive/2023/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy6.pfb
|
@ -0,0 +1,74 @@
|
||||
%! TeX program = lualatex
|
||||
\documentclass[a4paper, 11pt]{article}
|
||||
|
||||
|
||||
% packages
|
||||
\usepackage{microtype} % Slightly tweak font spacing for aesthetics
|
||||
\usepackage[english]{babel} % Language hyphenation and typographical rules
|
||||
\usepackage[final, colorlinks = false, urlcolor = cyan]{hyperref}
|
||||
\usepackage{changepage} % adjust margins on the fly
|
||||
\usepackage{fontspec}
|
||||
|
||||
\usepackage{minted}
|
||||
\usepackage{xcolor}
|
||||
|
||||
\usepackage{pgfplots}
|
||||
\pgfplotsset{width=\textwidth,compat=1.9}
|
||||
|
||||
\usepackage{caption}
|
||||
\newenvironment{code}{\captionsetup{type=listing}}{}
|
||||
|
||||
\usepackage[yyyymmdd]{datetime}
|
||||
\renewcommand{\dateseparator}{-}
|
||||
\setmainfont{EB Garamond}
|
||||
\setmonofont[Scale=MatchLowercase]{Deja Vu Sans Mono}
|
||||
|
||||
\usepackage{titlesec}
|
||||
% \titleformat{\section}{\LARGE\bfseries}{}{}{}[\titlerule]
|
||||
% \titleformat{\subsection}{\Large\bfseries}{}{0em}{}
|
||||
% \titlespacing{\subsection}{0em}{-0.7em}{0em}
|
||||
%
|
||||
% \titleformat{\subsubsection}{\large\bfseries}{}{0em}{$\bullet$ }
|
||||
% \titlespacing{\subsubsection}{1em}{-0.7em}{0em}
|
||||
|
||||
% margins
|
||||
\addtolength{\hoffset}{-2.25cm}
|
||||
\addtolength{\textwidth}{4.5cm}
|
||||
\addtolength{\voffset}{-3.25cm}
|
||||
\addtolength{\textheight}{5cm}
|
||||
\setlength{\parskip}{0pt}
|
||||
\setlength{\parindent}{0in}
|
||||
% \setcounter{secnumdepth}{0}
|
||||
|
||||
\begin{document}
|
||||
\hrule \medskip
|
||||
\begin{minipage}{0.295\textwidth}
|
||||
\raggedright
|
||||
\footnotesize
|
||||
\textbf{Name:} Andrew Hayes \\
|
||||
\textbf{E-mail:} \href{mailto://a.hayes18@universityofgalway.ie}{a.hayes18@universityofgalway.ie} \hfill\\
|
||||
\textbf{ID:} 21321503 \hfill
|
||||
\end{minipage}
|
||||
\begin{minipage}{0.4\textwidth}
|
||||
\centering
|
||||
\vspace{0.4em}
|
||||
\Large
|
||||
\textbf{CT3536} \\
|
||||
\end{minipage}
|
||||
\begin{minipage}{0.295\textwidth}
|
||||
\raggedleft
|
||||
\today
|
||||
\end{minipage}
|
||||
\medskip\hrule
|
||||
\begin{center}
|
||||
\normalsize
|
||||
\textbf{Assignment 01: Fear \& Dread}
|
||||
\end{center}
|
||||
\hrule
|
||||
|
||||
\begin{code}
|
||||
\inputminted[texcl, mathescape, breaklines, frame=single]{csharp}{../GameManagerScript.cs}
|
||||
\caption{\texttt{GameManagerScript.cs}}
|
||||
\end{code}
|
||||
|
||||
\end{document}
|
@ -0,0 +1,53 @@
|
||||
\begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8\relax}]
|
||||
\PYG{c+c1}{// Andrew Hayes, ID: 21321503}
|
||||
\PYG{c+c1}{// some of the comments here are quite obvious, and are just here for my own learning purposes}
|
||||
\PYG{k}{using}\PYG{+w}{ }\PYG{n+nn}{System.Collections}\PYG{p}{;}
|
||||
\PYG{k}{using}\PYG{+w}{ }\PYG{n+nn}{System.Collections.Generic}\PYG{p}{;}
|
||||
\PYG{k}{using}\PYG{+w}{ }\PYG{n+nn}{UnityEngine}\PYG{p}{;}
|
||||
|
||||
\PYG{k}{public}\PYG{+w}{ }\PYG{k}{class}\PYG{+w}{ }\PYG{n+nc}{GameManager}\PYG{+w}{ }\PYG{p}{:}\PYG{+w}{ }\PYG{n}{MonoBehaviour}\PYG{+w}{ }\PYG{p}{\PYGZob{}}
|
||||
\PYG{+w}{ }\PYG{c+c1}{// inspector settings}
|
||||
\PYG{+w}{ }\PYG{k}{public}\PYG{+w}{ }\PYG{n}{GameObject}\PYG{+w}{ }\PYG{n}{mars}\PYG{p}{;}
|
||||
\PYG{+w}{ }\PYG{k}{public}\PYG{+w}{ }\PYG{n}{GameObject}\PYG{+w}{ }\PYG{n}{phobos}\PYG{p}{;}\PYG{+w}{ }
|
||||
\PYG{+w}{ }\PYG{k}{public}\PYG{+w}{ }\PYG{n}{GameObject}\PYG{+w}{ }\PYG{n}{deimos}\PYG{p}{;}
|
||||
|
||||
\PYG{+w}{ }\PYG{c+c1}{// speed that the camera moves around mars on arrow keypress}
|
||||
\PYG{+w}{ }\PYG{k}{public}\PYG{+w}{ }\PYG{k+kt}{float}\PYG{+w}{ }\PYG{n}{cameraSpeed}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{l+m}{5.0f}\PYG{p}{;}\PYG{+w}{ }
|
||||
|
||||
|
||||
|
||||
\PYG{+w}{ }\PYG{c+c1}{// Start is called before the first frame update}
|
||||
\PYG{+w}{ }\PYG{k}{void}\PYG{+w}{ }\PYG{n+nf}{Start}\PYG{p}{()}\PYG{+w}{ }\PYG{p}{\PYGZob{}}
|
||||
\PYG{+w}{ }\PYG{c+c1}{// set position of mars object and point camera at it}
|
||||
\PYG{+w}{ }\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{position}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{k}{new}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{(}\PYG{l+m}{0}\PYG{p}{,}\PYG{l+m}{0}\PYG{p}{,}\PYG{l+m}{0}\PYG{p}{);}
|
||||
\PYG{+w}{ }\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{rotation}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n}{Quaternion}\PYG{p}{.}\PYG{n}{Euler}\PYG{p}{(}\PYG{k}{new}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{(}\PYG{l+m}{270}\PYG{p}{,}\PYG{l+m}{0}\PYG{p}{,}\PYG{l+m}{0}\PYG{p}{));}\PYG{+w}{ }\PYG{c+c1}{// make it so mars' north pole points up}
|
||||
\PYG{+w}{ }\PYG{n}{Camera}\PYG{p}{.}\PYG{n}{main}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{position}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{k}{new}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{(}\PYG{l+m}{0}\PYG{p}{,}\PYG{l+m}{0}\PYG{p}{,}\PYG{o}{\PYGZhy{}}\PYG{l+m}{100}\PYG{p}{);}
|
||||
\PYG{+w}{ }\PYG{n}{Camera}\PYG{p}{.}\PYG{n}{main}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{LookAt}\PYG{p}{(}\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{);}
|
||||
|
||||
\PYG{+w}{ }\PYG{c+c1}{// before this can run, you need to manually add a rigid body with 0 angular velocity and no gravity in the UI}
|
||||
\PYG{+w}{ }\PYG{c+c1}{// start mars rotating }
|
||||
\PYG{+w}{ }\PYG{n}{mars}\PYG{p}{.}\PYG{n}{GetComponent}\PYG{o}{\PYGZlt{}}\PYG{n}{Rigidbody}\PYG{o}{\PYGZgt{}}\PYG{p}{().}\PYG{n}{AddTorque}\PYG{p}{(}\PYG{k}{new}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{(}\PYG{l+m}{0}\PYG{p}{,}\PYG{l+m}{20}\PYG{p}{,}\PYG{l+m}{0}\PYG{p}{));}
|
||||
\PYG{+w}{ }\PYG{p}{\PYGZcb{}}
|
||||
|
||||
\PYG{+w}{ }\PYG{k}{void}\PYG{+w}{ }\PYG{n+nf}{Update}\PYG{p}{()}\PYG{+w}{ }\PYG{p}{\PYGZob{}}
|
||||
\PYG{+w}{ }\PYG{c+c1}{// rotate phobos and deimos a little each frame }
|
||||
\PYG{+w}{ }\PYG{n}{phobos}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{RotateAround}\PYG{p}{(}\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{position}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{.}\PYG{n}{up}\PYG{p}{,}\PYG{+w}{ }\PYG{l+m}{32}\PYG{o}{*}\PYG{n}{Time}\PYG{p}{.}\PYG{n}{deltaTime}\PYG{p}{);}
|
||||
\PYG{+w}{ }\PYG{n}{deimos}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{RotateAround}\PYG{p}{(}\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{position}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{.}\PYG{n}{up}\PYG{p}{,}\PYG{+w}{ }\PYG{l+m}{8}\PYG{o}{*}\PYG{n}{Time}\PYG{p}{.}\PYG{n}{deltaTime}\PYG{p}{);}
|
||||
|
||||
\PYG{+w}{ }\PYG{c+c1}{// control the camera's position using the arrow keys}
|
||||
\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{Input}\PYG{p}{.}\PYG{n}{GetKey}\PYG{p}{(}\PYG{n}{KeyCode}\PYG{p}{.}\PYG{n}{LeftArrow}\PYG{p}{))}\PYG{+w}{ }\PYG{p}{\PYGZob{}}
|
||||
\PYG{+w}{ }\PYG{n}{Camera}\PYG{p}{.}\PYG{n}{main}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{RotateAround}\PYG{p}{(}\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{position}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{.}\PYG{n}{up}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{cameraSpeed}\PYG{p}{);}
|
||||
\PYG{+w}{ }\PYG{p}{\PYGZcb{}}
|
||||
\PYG{+w}{ }\PYG{k}{else}\PYG{+w}{ }\PYG{n+nf}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{Input}\PYG{p}{.}\PYG{n}{GetKey}\PYG{p}{(}\PYG{n}{KeyCode}\PYG{p}{.}\PYG{n}{RightArrow}\PYG{p}{))}\PYG{+w}{ }\PYG{p}{\PYGZob{}}\PYG{+w}{ }
|
||||
\PYG{+w}{ }\PYG{n}{Camera}\PYG{p}{.}\PYG{n}{main}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{RotateAround}\PYG{p}{(}\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{position}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{.}\PYG{n}{up}\PYG{p}{,}\PYG{+w}{ }\PYG{o}{\PYGZhy{}}\PYG{n}{cameraSpeed}\PYG{p}{);}
|
||||
\PYG{+w}{ }\PYG{p}{\PYGZcb{}}
|
||||
\PYG{+w}{ }\PYG{k}{else}\PYG{+w}{ }\PYG{n+nf}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{Input}\PYG{p}{.}\PYG{n}{GetKey}\PYG{p}{(}\PYG{n}{KeyCode}\PYG{p}{.}\PYG{n}{UpArrow}\PYG{p}{))}\PYG{+w}{ }\PYG{p}{\PYGZob{}}
|
||||
\PYG{+w}{ }\PYG{n}{Camera}\PYG{p}{.}\PYG{n}{main}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{RotateAround}\PYG{p}{(}\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{position}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{.}\PYG{n}{right}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{cameraSpeed}\PYG{p}{);}
|
||||
\PYG{+w}{ }\PYG{p}{\PYGZcb{}}
|
||||
\PYG{+w}{ }\PYG{k}{else}\PYG{+w}{ }\PYG{n+nf}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{Input}\PYG{p}{.}\PYG{n}{GetKey}\PYG{p}{(}\PYG{n}{KeyCode}\PYG{p}{.}\PYG{n}{DownArrow}\PYG{p}{))}\PYG{+w}{ }\PYG{p}{\PYGZob{}}
|
||||
\PYG{+w}{ }\PYG{n}{Camera}\PYG{p}{.}\PYG{n}{main}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{RotateAround}\PYG{p}{(}\PYG{n}{mars}\PYG{p}{.}\PYG{n}{transform}\PYG{p}{.}\PYG{n}{position}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{Vector3}\PYG{p}{.}\PYG{n}{right}\PYG{p}{,}\PYG{+w}{ }\PYG{o}{\PYGZhy{}}\PYG{n}{cameraSpeed}\PYG{p}{);}
|
||||
\PYG{+w}{ }\PYG{p}{\PYGZcb{}}
|
||||
\PYG{+w}{ }\PYG{p}{\PYGZcb{}}
|
||||
\PYG{p}{\PYGZcb{}}
|
||||
|
||||
\end{Verbatim}
|
@ -0,0 +1,102 @@
|
||||
|
||||
\makeatletter
|
||||
\def\PYG@reset{\let\PYG@it=\relax \let\PYG@bf=\relax%
|
||||
\let\PYG@ul=\relax \let\PYG@tc=\relax%
|
||||
\let\PYG@bc=\relax \let\PYG@ff=\relax}
|
||||
\def\PYG@tok#1{\csname PYG@tok@#1\endcsname}
|
||||
\def\PYG@toks#1+{\ifx\relax#1\empty\else%
|
||||
\PYG@tok{#1}\expandafter\PYG@toks\fi}
|
||||
\def\PYG@do#1{\PYG@bc{\PYG@tc{\PYG@ul{%
|
||||
\PYG@it{\PYG@bf{\PYG@ff{#1}}}}}}}
|
||||
\def\PYG#1#2{\PYG@reset\PYG@toks#1+\relax+\PYG@do{#2}}
|
||||
|
||||
\@namedef{PYG@tok@w}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.73,0.73}{##1}}}
|
||||
\@namedef{PYG@tok@c}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}}
|
||||
\@namedef{PYG@tok@cp}{\def\PYG@tc##1{\textcolor[rgb]{0.61,0.40,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@k}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@kp}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@kt}{\def\PYG@tc##1{\textcolor[rgb]{0.69,0.00,0.25}{##1}}}
|
||||
\@namedef{PYG@tok@o}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}}
|
||||
\@namedef{PYG@tok@ow}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.67,0.13,1.00}{##1}}}
|
||||
\@namedef{PYG@tok@nb}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@nf}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,1.00}{##1}}}
|
||||
\@namedef{PYG@tok@nc}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,1.00}{##1}}}
|
||||
\@namedef{PYG@tok@nn}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,1.00}{##1}}}
|
||||
\@namedef{PYG@tok@ne}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.80,0.25,0.22}{##1}}}
|
||||
\@namedef{PYG@tok@nv}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}}
|
||||
\@namedef{PYG@tok@no}{\def\PYG@tc##1{\textcolor[rgb]{0.53,0.00,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@nl}{\def\PYG@tc##1{\textcolor[rgb]{0.46,0.46,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@ni}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.44,0.44,0.44}{##1}}}
|
||||
\@namedef{PYG@tok@na}{\def\PYG@tc##1{\textcolor[rgb]{0.41,0.47,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@nt}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@nd}{\def\PYG@tc##1{\textcolor[rgb]{0.67,0.13,1.00}{##1}}}
|
||||
\@namedef{PYG@tok@s}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@sd}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@si}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.64,0.35,0.47}{##1}}}
|
||||
\@namedef{PYG@tok@se}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.67,0.36,0.12}{##1}}}
|
||||
\@namedef{PYG@tok@sr}{\def\PYG@tc##1{\textcolor[rgb]{0.64,0.35,0.47}{##1}}}
|
||||
\@namedef{PYG@tok@ss}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}}
|
||||
\@namedef{PYG@tok@sx}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@m}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}}
|
||||
\@namedef{PYG@tok@gh}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,0.50}{##1}}}
|
||||
\@namedef{PYG@tok@gu}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.50,0.00,0.50}{##1}}}
|
||||
\@namedef{PYG@tok@gd}{\def\PYG@tc##1{\textcolor[rgb]{0.63,0.00,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@gi}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.52,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@gr}{\def\PYG@tc##1{\textcolor[rgb]{0.89,0.00,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@ge}{\let\PYG@it=\textit}
|
||||
\@namedef{PYG@tok@gs}{\let\PYG@bf=\textbf}
|
||||
\@namedef{PYG@tok@ges}{\let\PYG@bf=\textbf\let\PYG@it=\textit}
|
||||
\@namedef{PYG@tok@gp}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,0.50}{##1}}}
|
||||
\@namedef{PYG@tok@go}{\def\PYG@tc##1{\textcolor[rgb]{0.44,0.44,0.44}{##1}}}
|
||||
\@namedef{PYG@tok@gt}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.27,0.87}{##1}}}
|
||||
\@namedef{PYG@tok@err}{\def\PYG@bc##1{{\setlength{\fboxsep}{\string -\fboxrule}\fcolorbox[rgb]{1.00,0.00,0.00}{1,1,1}{\strut ##1}}}}
|
||||
\@namedef{PYG@tok@kc}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@kd}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@kn}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@kr}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@bp}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}}
|
||||
\@namedef{PYG@tok@fm}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,1.00}{##1}}}
|
||||
\@namedef{PYG@tok@vc}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}}
|
||||
\@namedef{PYG@tok@vg}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}}
|
||||
\@namedef{PYG@tok@vi}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}}
|
||||
\@namedef{PYG@tok@vm}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}}
|
||||
\@namedef{PYG@tok@sa}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@sb}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@sc}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@dl}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@s2}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@sh}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@s1}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}}
|
||||
\@namedef{PYG@tok@mb}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}}
|
||||
\@namedef{PYG@tok@mf}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}}
|
||||
\@namedef{PYG@tok@mh}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}}
|
||||
\@namedef{PYG@tok@mi}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}}
|
||||
\@namedef{PYG@tok@il}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}}
|
||||
\@namedef{PYG@tok@mo}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}}
|
||||
\@namedef{PYG@tok@ch}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}}
|
||||
\@namedef{PYG@tok@cm}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}}
|
||||
\@namedef{PYG@tok@cpf}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}}
|
||||
\@namedef{PYG@tok@c1}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}}
|
||||
\@namedef{PYG@tok@cs}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}}
|
||||
|
||||
\def\PYGZbs{\char`\\}
|
||||
\def\PYGZus{\char`\_}
|
||||
\def\PYGZob{\char`\{}
|
||||
\def\PYGZcb{\char`\}}
|
||||
\def\PYGZca{\char`\^}
|
||||
\def\PYGZam{\char`\&}
|
||||
\def\PYGZlt{\char`\<}
|
||||
\def\PYGZgt{\char`\>}
|
||||
\def\PYGZsh{\char`\#}
|
||||
\def\PYGZpc{\char`\%}
|
||||
\def\PYGZdl{\char`\$}
|
||||
\def\PYGZhy{\char`\-}
|
||||
\def\PYGZsq{\char`\'}
|
||||
\def\PYGZdq{\char`\"}
|
||||
\def\PYGZti{\char`\~}
|
||||
% for compatibility with earlier versions
|
||||
\def\PYGZat{@}
|
||||
\def\PYGZlb{[}
|
||||
\def\PYGZrb{]}
|
||||
\makeatother
|
||||
|
@ -0,0 +1,80 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &8158671706834929829
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 8158671706834769029}
|
||||
- component: {fileID: 8158671706833999013}
|
||||
- component: {fileID: 8158671706833000037}
|
||||
m_Layer: 0
|
||||
m_Name: phobos
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &8158671706834769029
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8158671706834929829}
|
||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 41.2}
|
||||
m_LocalScale: {x: 0.01, y: 0.01, z: 0.01}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!33 &8158671706833999013
|
||||
MeshFilter:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8158671706834929829}
|
||||
m_Mesh: {fileID: 4300000, guid: 303c89b8ca5b749a98272a094ed66020, type: 3}
|
||||
--- !u!23 &8158671706833000037
|
||||
MeshRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8158671706834929829}
|
||||
m_Enabled: 1
|
||||
m_CastShadows: 1
|
||||
m_ReceiveShadows: 1
|
||||
m_DynamicOccludee: 1
|
||||
m_MotionVectors: 1
|
||||
m_LightProbeUsage: 1
|
||||
m_ReflectionProbeUsage: 1
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
- {fileID: 2100000, guid: 303c89b8ca5b749a98272a094ed66020, type: 3}
|
||||
- {fileID: 2100002, guid: 303c89b8ca5b749a98272a094ed66020, type: 3}
|
||||
m_StaticBatchInfo:
|
||||
firstSubMesh: 0
|
||||
subMeshCount: 0
|
||||
m_StaticBatchRoot: {fileID: 0}
|
||||
m_ProbeAnchor: {fileID: 0}
|
||||
m_LightProbeVolumeOverride: {fileID: 0}
|
||||
m_ScaleInLightmap: 1
|
||||
m_PreserveUVs: 0
|
||||
m_IgnoreNormalsForChartDetection: 0
|
||||
m_ImportantGI: 0
|
||||
m_StitchLightmapSeams: 0
|
||||
m_SelectedEditorRenderState: 3
|
||||
m_MinimumChartSize: 4
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 0
|
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 18b7cfdb18fd74b40a6a893bf804f7a4
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
172
third/semester1/CT3536: Games Programming/labs/Weeks 1-3/lab2/phobos2.dae
Executable file
@ -0,0 +1,100 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 303c89b8ca5b749a98272a094ed66020
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: mesh1
|
||||
100002: //RootNode
|
||||
400000: mesh1
|
||||
400002: //RootNode
|
||||
2100000: fobos
|
||||
2100002: BackColor
|
||||
2300000: mesh1
|
||||
3300000: mesh1
|
||||
4300000: mesh1
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 1
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 1
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
previousCalculatedGlobalScale: 1
|
||||
hasPreviousCalculatedGlobalScale: 0
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 1
|
||||
copyAvatar: 0
|
||||
humanDescription:
|
||||
serializedVersion: 2
|
||||
human: []
|
||||
skeleton: []
|
||||
armTwist: 0.5
|
||||
foreArmTwist: 0.5
|
||||
upperLegTwist: 0.5
|
||||
legTwist: 0.5
|
||||
armStretch: 0.05
|
||||
legStretch: 0.05
|
||||
feetSpacing: 0
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 0
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||
animationType: 0
|
||||
humanoidOversampling: 1
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
After Width: | Height: | Size: 26 KiB |
@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 160727aa92b574e2da94a4841f151eac
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
After Width: | Height: | Size: 36 KiB |
@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 38f75c321d316413cb8d3ad2af036a84
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
After Width: | Height: | Size: 38 KiB |
@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4bf65a7e8488741ce99c26cd4c074d95
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
After Width: | Height: | Size: 35 KiB |
@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2b4ec48d656de478a84e7f49e484567d
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
After Width: | Height: | Size: 20 KiB |
@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 04148519712d0468591d2345a425ef55
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
After Width: | Height: | Size: 46 KiB |
@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8bf0cd74ca51b45bfb6d767bc0efbd55
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|