├── Documentation~ ├── Example Threshold.gif ├── Example Timing.gif ├── Example.gif └── Github Header.jpg ├── LICENSE ├── LICENSE.meta ├── Materials.meta ├── Materials ├── Graph Line.mat └── Graph Line.mat.meta ├── Prefabs.meta ├── Prefabs ├── UI.meta └── UI │ ├── Graph (Mini).prefab │ ├── Graph (Mini).prefab.meta │ ├── Graph Visualizer.prefab │ ├── Graph Visualizer.prefab.meta │ ├── Graph.prefab │ ├── Graph.prefab.meta │ ├── Grid Line Value UI.prefab │ ├── Grid Line Value UI.prefab.meta │ ├── Line Info UI.prefab │ └── Line Info UI.prefab.meta ├── README.md ├── README.md.meta ├── Resources.meta ├── Resources ├── Graphing.meta └── Graphing │ ├── Graph Service Renderer.prefab │ └── Graph Service Renderer.prefab.meta ├── Scripts.meta ├── Scripts ├── Editor.meta ├── Editor │ ├── Extensions.meta │ ├── Extensions │ │ ├── SerializedProperyExtensions.cs │ │ └── SerializedProperyExtensions.cs.meta │ ├── RoyTheunissen.Graphing.Editor.asmdef │ ├── RoyTheunissen.Graphing.Editor.asmdef.meta │ ├── UI.meta │ └── UI │ │ ├── GraphComponentLineSettingsPropertyDrawer.cs │ │ └── GraphComponentLineSettingsPropertyDrawer.cs.meta ├── Runtime.meta └── Runtime │ ├── Graph.cs │ ├── Graph.cs.meta │ ├── GraphLine.cs │ ├── GraphLine.cs.meta │ ├── GraphPoint.cs │ ├── GraphPoint.cs.meta │ ├── GraphingExample.cs │ ├── GraphingExample.cs.meta │ ├── GraphingService.cs │ ├── GraphingService.cs.meta │ ├── RoyTheunissen.Graphing.asmdef │ ├── RoyTheunissen.Graphing.asmdef.meta │ ├── UI.meta │ ├── UI │ ├── GraphComponent.cs │ ├── GraphComponent.cs.meta │ ├── GraphDataUI.cs │ ├── GraphDataUI.cs.meta │ ├── GraphServiceGraphController.cs │ ├── GraphServiceGraphController.cs.meta │ ├── GraphUI.cs │ ├── GraphUI.cs.meta │ ├── GridLineValueUI.cs │ ├── GridLineValueUI.cs.meta │ ├── LineInfoUI.cs │ └── LineInfoUI.cs.meta │ ├── Utilities.meta │ └── Utilities │ ├── ColorExtensions.cs │ ├── ColorExtensions.cs.meta │ ├── FloatExtensions.cs │ ├── FloatExtensions.cs.meta │ ├── Pool.cs │ ├── Pool.cs.meta │ ├── Vector2Extensions.cs │ ├── Vector2Extensions.cs.meta │ ├── Vector3Extensions.cs │ └── Vector3Extensions.cs.meta ├── Shaders.meta ├── Shaders ├── GraphLine.shader └── GraphLine.shader.meta ├── package.json └── package.json.meta /Documentation~/Example Threshold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Documentation~/Example Threshold.gif -------------------------------------------------------------------------------- /Documentation~/Example Timing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Documentation~/Example Timing.gif -------------------------------------------------------------------------------- /Documentation~/Example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Documentation~/Example.gif -------------------------------------------------------------------------------- /Documentation~/Github Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Documentation~/Github Header.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Materials.meta -------------------------------------------------------------------------------- /Materials/Graph Line.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Materials/Graph Line.mat -------------------------------------------------------------------------------- /Materials/Graph Line.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Materials/Graph Line.mat.meta -------------------------------------------------------------------------------- /Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs.meta -------------------------------------------------------------------------------- /Prefabs/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI.meta -------------------------------------------------------------------------------- /Prefabs/UI/Graph (Mini).prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Graph (Mini).prefab -------------------------------------------------------------------------------- /Prefabs/UI/Graph (Mini).prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Graph (Mini).prefab.meta -------------------------------------------------------------------------------- /Prefabs/UI/Graph Visualizer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Graph Visualizer.prefab -------------------------------------------------------------------------------- /Prefabs/UI/Graph Visualizer.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Graph Visualizer.prefab.meta -------------------------------------------------------------------------------- /Prefabs/UI/Graph.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Graph.prefab -------------------------------------------------------------------------------- /Prefabs/UI/Graph.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Graph.prefab.meta -------------------------------------------------------------------------------- /Prefabs/UI/Grid Line Value UI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Grid Line Value UI.prefab -------------------------------------------------------------------------------- /Prefabs/UI/Grid Line Value UI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Grid Line Value UI.prefab.meta -------------------------------------------------------------------------------- /Prefabs/UI/Line Info UI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Line Info UI.prefab -------------------------------------------------------------------------------- /Prefabs/UI/Line Info UI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Prefabs/UI/Line Info UI.prefab.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/README.md.meta -------------------------------------------------------------------------------- /Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Resources.meta -------------------------------------------------------------------------------- /Resources/Graphing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Resources/Graphing.meta -------------------------------------------------------------------------------- /Resources/Graphing/Graph Service Renderer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Resources/Graphing/Graph Service Renderer.prefab -------------------------------------------------------------------------------- /Resources/Graphing/Graph Service Renderer.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Resources/Graphing/Graph Service Renderer.prefab.meta -------------------------------------------------------------------------------- /Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts.meta -------------------------------------------------------------------------------- /Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor.meta -------------------------------------------------------------------------------- /Scripts/Editor/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor/Extensions.meta -------------------------------------------------------------------------------- /Scripts/Editor/Extensions/SerializedProperyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor/Extensions/SerializedProperyExtensions.cs -------------------------------------------------------------------------------- /Scripts/Editor/Extensions/SerializedProperyExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor/Extensions/SerializedProperyExtensions.cs.meta -------------------------------------------------------------------------------- /Scripts/Editor/RoyTheunissen.Graphing.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor/RoyTheunissen.Graphing.Editor.asmdef -------------------------------------------------------------------------------- /Scripts/Editor/RoyTheunissen.Graphing.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor/RoyTheunissen.Graphing.Editor.asmdef.meta -------------------------------------------------------------------------------- /Scripts/Editor/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor/UI.meta -------------------------------------------------------------------------------- /Scripts/Editor/UI/GraphComponentLineSettingsPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor/UI/GraphComponentLineSettingsPropertyDrawer.cs -------------------------------------------------------------------------------- /Scripts/Editor/UI/GraphComponentLineSettingsPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Editor/UI/GraphComponentLineSettingsPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime.meta -------------------------------------------------------------------------------- /Scripts/Runtime/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Graph.cs -------------------------------------------------------------------------------- /Scripts/Runtime/Graph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Graph.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/GraphLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/GraphLine.cs -------------------------------------------------------------------------------- /Scripts/Runtime/GraphLine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37483f1734e34ce9aa3341db6e1ad60c 3 | timeCreated: 1696879867 -------------------------------------------------------------------------------- /Scripts/Runtime/GraphPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/GraphPoint.cs -------------------------------------------------------------------------------- /Scripts/Runtime/GraphPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09d9286eb95748dfadea09db77b1384a 3 | timeCreated: 1696879856 -------------------------------------------------------------------------------- /Scripts/Runtime/GraphingExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/GraphingExample.cs -------------------------------------------------------------------------------- /Scripts/Runtime/GraphingExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/GraphingExample.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/GraphingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/GraphingService.cs -------------------------------------------------------------------------------- /Scripts/Runtime/GraphingService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/GraphingService.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/RoyTheunissen.Graphing.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/RoyTheunissen.Graphing.asmdef -------------------------------------------------------------------------------- /Scripts/Runtime/RoyTheunissen.Graphing.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/RoyTheunissen.Graphing.asmdef.meta -------------------------------------------------------------------------------- /Scripts/Runtime/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI.meta -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GraphComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GraphComponent.cs -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GraphComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GraphComponent.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GraphDataUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GraphDataUI.cs -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GraphDataUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GraphDataUI.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GraphServiceGraphController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GraphServiceGraphController.cs -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GraphServiceGraphController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GraphServiceGraphController.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GraphUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GraphUI.cs -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GraphUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GraphUI.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GridLineValueUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GridLineValueUI.cs -------------------------------------------------------------------------------- /Scripts/Runtime/UI/GridLineValueUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/GridLineValueUI.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/UI/LineInfoUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/LineInfoUI.cs -------------------------------------------------------------------------------- /Scripts/Runtime/UI/LineInfoUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/UI/LineInfoUI.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities.meta -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/ColorExtensions.cs -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/ColorExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/ColorExtensions.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/FloatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/FloatExtensions.cs -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/FloatExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/FloatExtensions.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/Pool.cs -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/Pool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/Pool.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/Vector2Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/Vector2Extensions.cs -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/Vector2Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/Vector2Extensions.cs.meta -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/Vector3Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/Vector3Extensions.cs -------------------------------------------------------------------------------- /Scripts/Runtime/Utilities/Vector3Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Scripts/Runtime/Utilities/Vector3Extensions.cs.meta -------------------------------------------------------------------------------- /Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Shaders.meta -------------------------------------------------------------------------------- /Shaders/GraphLine.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Shaders/GraphLine.shader -------------------------------------------------------------------------------- /Shaders/GraphLine.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/Shaders/GraphLine.shader.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyTheunissen/Value-Graphing/HEAD/package.json.meta --------------------------------------------------------------------------------