Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First pass at editor GUI #421

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ sponza*

# Ignore compiled shaders
*.spv

# Checking in a socket is probably a terrible idea
*.socket
11 changes: 10 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,17 @@
"label": "Run Hotham simple scene on the simulator",
"group": {
"kind": "test",
"isDefault": true,
"isDefault": false,
}
},
{
"label": "Test OpenXR Client",
"type": "shell",
"command": "./hotham-openxr-client/test.ps1",
"group": {
"kind": "test",
"isDefault": true,
}
}
]
}
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ members = [
"hotham-asset-client",
"hotham-asset-server",
"hotham-simulator",
"hotham-editor",
"hotham-editor-client",
"hotham-openxr-client",
"hotham",
]

Expand Down
8 changes: 8 additions & 0 deletions hotham-editor-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "hotham-editor-client"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions hotham-editor-client/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
14 changes: 14 additions & 0 deletions hotham-editor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
edition = "2021"
name = "hotham-editor"
version = "0.1.0"

[dependencies]
ash = "0.37.2"
env_logger = "0.10.0"
lazy_vulkan = {git = "https://github.com/leetvr/lazy_vulkan", rev = "5347dd3295fd4c687c35adbe7c0b4aad00c893e3"}
log = "0.4.17"
winit = "0.28.1"

[target.'cfg(windows)'.dependencies]
uds_windows = "1.0.2"
Loading