@tomorrowevening/hermes 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/README.md +10 -0
- package/dist/hermes.js +1202 -0
- package/dist/hermes.umd.cjs +29 -0
- package/dist/images/debug/icon_camera.png +0 -0
- package/dist/images/debug/icon_folder.png +0 -0
- package/dist/images/debug/icon_interactive.png +0 -0
- package/dist/images/debug/icon_lights.png +0 -0
- package/dist/images/debug/icon_refresh.png +0 -0
- package/dist/images/debug/icon_ui.png +0 -0
- package/dist/images/debug/icon_utils.png +0 -0
- package/dist/images/debug/icon_world.png +0 -0
- package/dist/style.css +1 -0
- package/package.json +63 -0
- package/src/core/Application.ts +69 -0
- package/src/core/RemoteController.ts +135 -0
- package/src/core/remote/BaseRemote.ts +16 -0
- package/src/core/remote/RemoteComponents.ts +32 -0
- package/src/core/remote/RemoteTheatre.ts +117 -0
- package/src/core/remote/RemoteTweakpane.ts +176 -0
- package/src/core/types.ts +43 -0
- package/src/editor/Editor.tsx +15 -0
- package/src/editor/components/Draggable.tsx +40 -0
- package/src/editor/components/DraggableItem.tsx +22 -0
- package/src/editor/components/Dropdown.tsx +30 -0
- package/src/editor/components/DropdownItem.tsx +64 -0
- package/src/editor/components/NavButton.tsx +11 -0
- package/src/editor/components/icons/CloseIcon.tsx +7 -0
- package/src/editor/components/icons/DragIcon.tsx +9 -0
- package/src/editor/components/types.ts +41 -0
- package/src/editor/global.ts +13 -0
- package/src/editor/sceneHierarchy/ChildObject.tsx +56 -0
- package/src/editor/sceneHierarchy/ContainerObject.tsx +12 -0
- package/src/editor/sceneHierarchy/SceneHierarchy.tsx +77 -0
- package/src/editor/sceneHierarchy/types.ts +10 -0
- package/src/editor/sceneHierarchy/utils.ts +25 -0
- package/src/editor/scss/_debug.scss +68 -0
- package/src/editor/scss/_draggable.scss +43 -0
- package/src/editor/scss/_dropdown.scss +83 -0
- package/src/editor/scss/_sceneHierarchy.scss +170 -0
- package/src/editor/scss/_theme.scss +9 -0
- package/src/editor/scss/index.scss +58 -0
- package/src/editor/utils.ts +20 -0
- package/src/example/App.css +6 -0
- package/src/example/App.tsx +88 -0
- package/src/example/constants.ts +13 -0
- package/src/example/index.scss +37 -0
- package/src/example/main.tsx +75 -0
- package/src/library.ts +16 -0
- package/src/vite-env.d.ts +1 -0
- package/types/core/Application.d.ts +21 -0
- package/types/core/RemoteController.d.ts +2 -0
- package/types/core/remote/BaseRemote.d.ts +6 -0
- package/types/core/remote/RemoteComponents.d.ts +7 -0
- package/types/core/remote/RemoteDebug.d.ts +23 -0
- package/types/core/remote/RemoteTheatre.d.ts +16 -0
- package/types/core/remote/RemoteTweakpane.d.ts +23 -0
- package/types/core/types.d.ts +13 -0
- package/types/debug/Editor.d.ts +8 -0
- package/types/debug/components/Draggable.d.ts +2 -0
- package/types/debug/components/DraggableItem.d.ts +2 -0
- package/types/debug/components/Dropdown.d.ts +2 -0
- package/types/debug/components/DropdownItem.d.ts +2 -0
- package/types/debug/components/NavButton.d.ts +5 -0
- package/types/debug/components/icons/CloseIcon.d.ts +2 -0
- package/types/debug/components/icons/DragIcon.d.ts +2 -0
- package/types/debug/components/types.d.ts +31 -0
- package/types/debug/global.d.ts +9 -0
- package/types/debug/sceneHierarchy/ChildObject.d.ts +2 -0
- package/types/debug/sceneHierarchy/ContainerObject.d.ts +2 -0
- package/types/debug/sceneHierarchy/SceneHierarchy.d.ts +13 -0
- package/types/debug/sceneHierarchy/types.d.ts +8 -0
- package/types/debug/sceneHierarchy/utils.d.ts +2 -0
- package/types/debug/utils.d.ts +4 -0
- package/types/editor/Editor.d.ts +8 -0
- package/types/editor/components/Draggable.d.ts +2 -0
- package/types/editor/components/DraggableItem.d.ts +2 -0
- package/types/editor/components/Dropdown.d.ts +2 -0
- package/types/editor/components/DropdownItem.d.ts +2 -0
- package/types/editor/components/NavButton.d.ts +5 -0
- package/types/editor/components/icons/CloseIcon.d.ts +2 -0
- package/types/editor/components/icons/DragIcon.d.ts +2 -0
- package/types/editor/components/types.d.ts +31 -0
- package/types/editor/global.d.ts +9 -0
- package/types/editor/sceneHierarchy/ChildObject.d.ts +2 -0
- package/types/editor/sceneHierarchy/ContainerObject.d.ts +2 -0
- package/types/editor/sceneHierarchy/SceneHierarchy.d.ts +13 -0
- package/types/editor/sceneHierarchy/types.d.ts +8 -0
- package/types/editor/sceneHierarchy/utils.d.ts +2 -0
- package/types/editor/utils.d.ts +4 -0
- package/types/example/App.d.ts +3 -0
- package/types/example/constants.d.ts +3 -0
- package/types/example/main.d.ts +1 -0
- package/types/library.d.ts +14 -0
package/README.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# Hermes
|
2
|
+
|
3
|
+
An extendable set of Web Tools controlled via a separate window for non-intereference with content.
|
4
|
+
|
5
|
+
### Tools for:
|
6
|
+
|
7
|
+
- Customizable Navigation Dropdowns + Draggable components for Triggers/Event Dispatching
|
8
|
+
- [TheatreJS](https://www.theatrejs.com/)
|
9
|
+
- [ThreeJS](https://threejs.org/)
|
10
|
+
- [Tweakpane](https://tweakpane.github.io/docs/)
|