rg3d: Rust 3D game engine with an FPS demo game and scene editor
1–10 of 143 posts
Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#2Check out the UI framework that it uses https://github.com/mrDIMAS/rg3d-ui
Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#3Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#4Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#5It takes some parts of ECS but the UI is OOP-ish. I wonder if there is a good ECS UI architecture. I have been exploring this lately in Rust, and right now I have settled on jquery style selectors (don't laugh) where you have a generic entity builder and associate a selector (id + class list) with each entity. When an event fires, you check what selectors are associated with the focused entity and call the associated callbacks. I also do this for rendering. I'm not too crazy about this though. But I'm having a hard time figuring out how to do behavior composition in Rust.
Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#6The graphics looks like it's from 15-20 years ago. Modern game engines are so far ahead of this, rg3d has a lot of catching up to do.
Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#7The graphics looks like it's from 15-20 years ago. Modern game engines are so far ahead of this, rg3d has a lot of catching up to do.
Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#8It's a really impressive project. Also check out the associated scene editor https://github.com/mrDIMAS/rusty-editor Check out the UI framework that it uses https://github.com/mrDIMAS/rg3d-ui
Interestingly it seems it started as a shooter game more than an engine — explains why the feature set is tailored towards that.
Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#9The graphics looks like it's from 15-20 years ago. Modern game engines are so far ahead of this, rg3d has a lot of catching up to do.
Re: rg3d: Rust 3D game engine with an FPS demo game and scene editor
#10It's a really impressive project. Also check out the associated scene editor https://github.com/mrDIMAS/rusty-editor Check out the UI framework that it uses https://github.com/mrDIMAS/rg3d-ui
Agreed, this feature set looks like an incredible amount of work for a year. Interestingly it seems it started as a shooter game more than an engine — explains why the feature set is tailored towards that.