├── .gitignore ├── Assets ├── Hypertext.meta └── Hypertext │ ├── Examples.meta │ ├── Examples │ ├── RegexExample.cs │ ├── RegexExample.cs.meta │ ├── RegexExample.unity │ ├── RegexExample.unity.meta │ ├── RegexHypertext.cs │ └── RegexHypertext.cs.meta │ ├── Scripts.meta │ └── Scripts │ ├── HypertextBase.cs │ ├── HypertextBase.cs.meta │ ├── ObjectPool.cs │ ├── ObjectPool.cs.meta │ ├── jp.setchi.ugui-hypertext.asmdef │ └── jp.setchi.ugui-hypertext.asmdef.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset └── VFXManager.asset ├── README.md └── screencast.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Hypertext.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext.meta -------------------------------------------------------------------------------- /Assets/Hypertext/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Examples.meta -------------------------------------------------------------------------------- /Assets/Hypertext/Examples/RegexExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Examples/RegexExample.cs -------------------------------------------------------------------------------- /Assets/Hypertext/Examples/RegexExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Examples/RegexExample.cs.meta -------------------------------------------------------------------------------- /Assets/Hypertext/Examples/RegexExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Examples/RegexExample.unity -------------------------------------------------------------------------------- /Assets/Hypertext/Examples/RegexExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Examples/RegexExample.unity.meta -------------------------------------------------------------------------------- /Assets/Hypertext/Examples/RegexHypertext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Examples/RegexHypertext.cs -------------------------------------------------------------------------------- /Assets/Hypertext/Examples/RegexHypertext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Examples/RegexHypertext.cs.meta -------------------------------------------------------------------------------- /Assets/Hypertext/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Scripts.meta -------------------------------------------------------------------------------- /Assets/Hypertext/Scripts/HypertextBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Scripts/HypertextBase.cs -------------------------------------------------------------------------------- /Assets/Hypertext/Scripts/HypertextBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Scripts/HypertextBase.cs.meta -------------------------------------------------------------------------------- /Assets/Hypertext/Scripts/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Scripts/ObjectPool.cs -------------------------------------------------------------------------------- /Assets/Hypertext/Scripts/ObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Scripts/ObjectPool.cs.meta -------------------------------------------------------------------------------- /Assets/Hypertext/Scripts/jp.setchi.ugui-hypertext.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jp.setchi.ugui-hypertext" 3 | } -------------------------------------------------------------------------------- /Assets/Hypertext/Scripts/jp.setchi.ugui-hypertext.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/Assets/Hypertext/Scripts/jp.setchi.ugui-hypertext.asmdef.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/README.md -------------------------------------------------------------------------------- /screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/setchi/uGUI-Hypertext/HEAD/screencast.gif --------------------------------------------------------------------------------