Logic Projects
Logic Projects
  • 67
  • 508 493
Simple Roguelike in Bevy
Over Thanksgiving I made a simple rouge style game based on Space Station 13 and Caves of Qud. I just wanted to show case some of what I made and share the source code of it in this video.
SS13 Footage: ua-cam.com/video/vc0R1TFJ3z4/v-deo.htmlsi=tcwrLSlR0mI0H48y
Code: github.com/mwbryant/logic-ss13-rougelike/tree/master
Discord Invite: discord.gg/w674Ze7ud7
Patreon: patreon.com/logicprojects
Переглядів: 5 273

Відео

Bevy's Powerful Secret: Commands
Переглядів 5 тис.Рік тому
This video covers an under utilized and super powerful technique to use Commands in Bevy to get World access from any system. Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects
Bevy 0.12 Release!!!
Переглядів 7 тис.Рік тому
Bevy 0.12 is out and I just wanted to quickly cover my thoughts on the blog and what I think will be cool in the next version. Thumbnail: x.com/i_am_feenster Bevy Blog: bevyengine.org/news/bevy-0-12/ Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects
Sprite Sheet Animation and Asset Loading in Bevy
Переглядів 8 тис.Рік тому
Just a quick video showing the basics of using the bevy_asset_loader plugin and creating an animated sprite Bevy Asset Loader: github.com/NiklasEi/bevy_asset_loader Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects
New Bevy UI/Scenes Proposal
Переглядів 11 тис.Рік тому
Thread: github.com/bevyengine/bevy/discussions/9538 Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects Chapters: 0:00 Intro 0:58 Prior Art 2:28 Design goals 3:58 Prototype 6:11 Outro
Learn Bevy! Plugins, Debugging, and UI (part 3)
Переглядів 11 тис.Рік тому
Welcome to part 3 of my intro to Bevy series. Here we learn how to create our own plugins and add community plugins. We also set up a powerful debugging plugin and create a basic UI system. Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects Github: github.com/mwbryant/logic_farm_roguelike/tree/part-3 Chapters: 0:00 Intro 0:35 Plugins 1:59 Inspector Egui 4:41 Hierarchies 7:...
Learn Bevy! Custom Components/Resources and Gameplay (part 2)
Переглядів 14 тис.Рік тому
Welcome to part 2 of my intro to Bevy series. Sorry for the delay on this part, I just moved into a new house and had no internet for a week! Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects Github: github.com/mwbryant/logic_farm_roguelike/tree/part-2 Chapters: 0:00 Intro 0:14 Custom Component 1:31 Camera Settings 2:05 Custom Resources 3:14 Pig Spawning 3:55 Filters 4:51...
Learn Bevy 0.11 By Making a Game! (part 1)
Переглядів 47 тис.Рік тому
Welcome to my new introductory series for the Bevy game engine! In this series we will create an entire real game from scratch using Bevy 0.11. Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects Github: github.com/mwbryant/logic_farm_roguelike/tree/part-1 Chapters: 0:00 Intro 2:06 Project Setup 3:43 First Window 4:40 First System 7:12 First Sprite 7:40 Loading an Image 9:2...
Bevy 0.11 Release!
Переглядів 3,5 тис.Рік тому
Bevy 0.11 just released and this is my "news" coverage of it and some quick discussion about my goals and plans for this release cycle. Release Notes: bevyengine.org/news/bevy-0-11/ Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects
Pathfinding and Async Tasks in Bevy
Переглядів 9 тис.Рік тому
This is just a quick video showing how to use the pathfinding crate and async tasks to create a pathfinding solution for a bevy game. The source code is up but it's an early draft for my future tutorial series code. Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects Source: github.com/mwbryant/logic_management_game 0:00 Intro 0:47 Grid System Overview 1:31 Pathfinding Crat...
Bevy Rendering Demystified
Переглядів 17 тис.Рік тому
This video covers a section of the lower level rendering features in Bevy. Specifically we look at how the engine renders UI nodes and cover the 5 main steps of rendering a quad in bevy using the lower level abstractions. Code Covered: github.com/bevyengine/bevy/tree/main/crates/bevy_ui/src/render App World/Render World graphic used in thumbnail/overview from the Bevy Cheatbook. Discord Invite:...
Comparing Unity DOTS and Bevy
Переглядів 10 тис.Рік тому
A few weeks ago I completed the LudumDare 53 Game Jam as part of a collaboration with @TurboMakesGames and we both made basically the same game in both Unity Dots and Bevy. In this video I go through some of the comparable systems and components and talk about the differences in both engines. Johnny's Channel: www.youtube.com/@TurboMakesGames My Game: logicprojects.itch.io/delivery-survivor Joh...
Hardware Design in Rust - rust-hdl and Intro to FPGAs
Переглядів 4,7 тис.Рік тому
Super off topic video for my channel but I explored an old hobby and wanted to showoff a cool Rust project. rust-hdl: github.com/samitbasu/rust-hdl Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/logicprojects Chapters: 0:00 Introduction 1:11 What is an FPGA and how do I get one 4:50 Vivado 6:05 Project Setup 7:41 My Musing about HLS 9:02 rust-hdl Blinky 13:17 Rams 14:44 VGA basics 1...
Post Processing, 3D Conversion, and Physics in Bevy (0.10 Devlog 6)
Переглядів 2,9 тис.Рік тому
This week I overhauled some fundamental aspects of the game. Everything is now in 3D and I have setup the infrastructure for post processing. I included a more tutorial style segment of post processing into this video. Play the Game: logicprojects.itch.io/logic-rpg Project Github: github.com/mwbryant/logic-turn-based-rpg/tree/devlog6 Discord Invite: discord.gg/w674Ze7ud7 Patreon: patreon.com/lo...
Continuous Integration and Documentation in Bevy (0.10 Devlog 5)
Переглядів 1,1 тис.Рік тому
This week I focused on some DevOps style cleanup around the game. Specifically setting up Github CI to automatically handle releases of the game and I built the game for web and changed everything required for that. I also started documenting the game into a book. Play the Game: logicprojects.itch.io/logic-rpg Project Github: github.com/mwbryant/logic-turn-based-rpg/tree/devlog5 Discord Invite:...
Making A Rust/Bevy Game in One Week - Bevy Jam 3
Переглядів 2 тис.Рік тому
Making A Rust/Bevy Game in One Week - Bevy Jam 3
Overworld and NPCs in Bevy (0.10 Devlog 4)
Переглядів 1,7 тис.Рік тому
Overworld and NPCs in Bevy (0.10 Devlog 4)
Particles, UI, and Animation in Bevy (0.10 Devlog 3)
Переглядів 2,5 тис.Рік тому
Particles, UI, and Animation in Bevy (0.10 Devlog 3)
Reorganizing in Bevy (0.10 Devlog 2)
Переглядів 1,6 тис.Рік тому
Reorganizing in Bevy (0.10 Devlog 2)
Turn Based Combat in Bevy (0.10 Devlog 1)
Переглядів 4,6 тис.Рік тому
Turn Based Combat in Bevy (0.10 Devlog 1)
Bevy 0.10 Release!! New Schedule Overview and First Thoughts
Переглядів 4,6 тис.Рік тому
Bevy 0.10 Release!! New Schedule Overview and First Thoughts
OpenAI Text Generation API and Bevy Async Tasks
Переглядів 3 тис.2 роки тому
OpenAI Text Generation API and Bevy Async Tasks
Bevy Egui - Quick Easy Developer Tools and UIs
Переглядів 20 тис.2 роки тому
Bevy Egui - Quick Easy Developer Tools and UIs
Compute Shaders in Bevy
Переглядів 14 тис.2 роки тому
Compute Shaders in Bevy
Final Cleanup and Audio - Bevy 0.9 Intro (Ep7)
Переглядів 3,8 тис.2 роки тому
Final Cleanup and Audio - Bevy 0.9 Intro (Ep7)
Rapier Physics Engine Showcase: Rust Physics Engine for Bevy
Переглядів 17 тис.2 роки тому
Rapier Physics Engine Showcase: Rust Physics Engine for Bevy
Menu, States, Events - Bevy 0.9 Intro (Ep6)
Переглядів 5 тис.2 роки тому
Menu, States, Events - Bevy 0.9 Intro (Ep6)
Bevy UI and Buttons - Bevy 0.8 Intro (Ep5) (Updated to 0.9 Check Description)
Переглядів 4,7 тис.2 роки тому
Bevy UI and Buttons - Bevy 0.8 Intro (Ep5) (Updated to 0.9 Check Description)
Making a Multiplayer Voxel Game with Rust/Bevy
Переглядів 7 тис.2 роки тому
Making a Multiplayer Voxel Game with Rust/Bevy
Input, Click Detection, and Tower Building - Bevy 0.8 Intro (Ep4) (Updated to 0.9 Check Description)
Переглядів 7 тис.2 роки тому
Input, Click Detection, and Tower Building - Bevy 0.8 Intro (Ep4) (Updated to 0.9 Check Description)

КОМЕНТАРІ