Make your own GUI apps in C++ (with ImGui and Vulkan)

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ธ.ค. 2024

ความคิดเห็น • 212

  • @unknownunknown6531
    @unknownunknown6531 2 ปีที่แล้ว +166

    I definitely want to see a video explaining how to customize dear imgui theme!

    • @aqg7vy
      @aqg7vy 2 ปีที่แล้ว +21

      Here you go. Call this during your init of imgui. change the colors to whatever you want.
      void setDefaultTheme() {
      // Colors
      ImVec4 blackSemi = ImVec4(0.00f, 0.00f, 0.00f, 0.94f);
      ImVec4 black = ImVec4(0.00f, 0.00f, 0.00f, 1.00f);
      ImVec4 red = ImVec4(0.23f, 0.16f, 0.16f, 1.00f);
      ImVec4 beige = ImVec4(0.78f, 0.62f, 0.51f, 1.00f);
      ImVec4 darkGrey = ImVec4(0.24f, 0.24f, 0.24f, 1.00f);
      ImVec4 greenGrey = ImVec4(0.148f, 0.168f, 0.153f, 1.00f);
      ImVec4 white = ImVec4(1.00f, 1.00f, 1.00f, 1.00f);
      ImVec4 darkerGrey = ImVec4(0.03f, 0.03f, 0.03f, 1.00f);
      ImVec4 grey = ImVec4(0.41f, 0.41f, 0.41f, 1.00f);
      ImVec4 green = ImVec4(0.21f, 0.27f, 0.27f, 1.00f);
      ImVec4* colors = ImGui::GetStyle().Colors;
      colors[ImGuiCol_Text] = beige;
      colors[ImGuiCol_TextDisabled] = white;
      colors[ImGuiCol_WindowBg] = black;
      colors[ImGuiCol_ChildBg] = black;
      colors[ImGuiCol_PopupBg] = black;
      colors[ImGuiCol_Border] = beige;
      colors[ImGuiCol_BorderShadow] = black;
      colors[ImGuiCol_FrameBg] = red;
      colors[ImGuiCol_FrameBgHovered] = darkerGrey;
      colors[ImGuiCol_FrameBgActive] = black;
      colors[ImGuiCol_TitleBg] = black;
      colors[ImGuiCol_TitleBgActive] = black;
      colors[ImGuiCol_TitleBgCollapsed] = black;
      colors[ImGuiCol_MenuBarBg] = red;
      colors[ImGuiCol_ScrollbarBg] = black;
      colors[ImGuiCol_ScrollbarGrab] = red;
      colors[ImGuiCol_ScrollbarGrabHovered] = darkerGrey;
      colors[ImGuiCol_ScrollbarGrabActive] = grey;
      colors[ImGuiCol_CheckMark] = beige;
      colors[ImGuiCol_SliderGrab] = beige;
      colors[ImGuiCol_SliderGrabActive] = beige;
      colors[ImGuiCol_Button] = red;
      colors[ImGuiCol_ButtonHovered] = darkerGrey;
      colors[ImGuiCol_ButtonActive] = red;
      colors[ImGuiCol_Header] = red;
      colors[ImGuiCol_HeaderHovered] = darkerGrey;
      colors[ImGuiCol_HeaderActive] = black;
      colors[ImGuiCol_Separator] = beige;
      colors[ImGuiCol_SeparatorHovered] = darkerGrey;
      colors[ImGuiCol_SeparatorActive] = beige;
      colors[ImGuiCol_ResizeGrip] = black;
      colors[ImGuiCol_ResizeGripHovered] = darkerGrey;
      colors[ImGuiCol_ResizeGripActive] = black;
      colors[ImGuiCol_Tab] = red;
      colors[ImGuiCol_TabHovered] = darkerGrey;
      colors[ImGuiCol_TabActive] = darkerGrey;
      colors[ImGuiCol_TabUnfocused] = black;
      colors[ImGuiCol_TabUnfocusedActive] = black;
      colors[ImGuiCol_PlotLines] = beige;
      colors[ImGuiCol_PlotLinesHovered] = darkerGrey;
      colors[ImGuiCol_PlotHistogram] = beige;
      colors[ImGuiCol_PlotHistogramHovered] = darkerGrey;
      colors[ImGuiCol_TextSelectedBg] = black;
      colors[ImGuiCol_DragDropTarget] = beige;
      colors[ImGuiCol_NavHighlight] = black;
      colors[ImGuiCol_NavWindowingHighlight] = black;
      colors[ImGuiCol_NavWindowingDimBg] = black;
      colors[ImGuiCol_ModalWindowDimBg] = black;
      // IO
      ImGuiIO& io = ImGui::GetIO();
      io.FontGlobalScale = 1.6f;
      }

    • @justinpakarno4346
      @justinpakarno4346 2 ปีที่แล้ว +8

      In the demo you can go Tools->Style Editor and play around with the values for an idea of their different effects.

    • @xvsvqc9663
      @xvsvqc9663 2 ปีที่แล้ว +5

      @@justinpakarno4346 you can also export the style to clipboard and paste it into your source

    • @arushford
      @arushford ปีที่แล้ว +2

      @@xvsvqc9663 why paste.. write an import from clipboard function, easy enough

  • @archimedeis
    @archimedeis 2 ปีที่แล้ว +5

    I literally watched that video yesterday because I wanted to do some GUI. And now this comes in at the perfect time. Thank you

  • @mateuszkacperski1211
    @mateuszkacperski1211 2 ปีที่แล้ว +5

    I gonna finish my beginner course in the next couple of months and I will look for some kind of GUI for c++ so thanks for this video I’m sure I will come back here :)
    God blessed you. Happy Easter :)

    • @Asdayasman
      @Asdayasman 2 ปีที่แล้ว +1

      A _beginner_ course takes _months?_
      You need your money back. And your time.

  • @eversonmay
    @eversonmay 2 ปีที่แล้ว +4

    YES! more ImGui please.

  • @hyprobablyausto
    @hyprobablyausto ปีที่แล้ว

    been with cherno since 2017..man he hasn't changed a bit much love sir

  • @IllumTheMessage
    @IllumTheMessage 2 ปีที่แล้ว +4

    Brilliant. Got everything running. Would love to see all the ImGUI stuff you are willing to put out. A vid on how one would: add and run linters, use Conan with this project to pull in wanted libraries, add network messaging between two Walnut applications, integrate run time dll loading to a Walnut application.

  • @masheroz
    @masheroz 2 ปีที่แล้ว +36

    I'm currently writing a program with imgui and implot. I'll be following this! Loading images is something I'm interested in for custom buttons.
    *and also storing fonts in the binary.

    • @x7themm
      @x7themm 2 ปีที่แล้ว +4

      ImGui::IsItemClicked() After drawing the item
      You’ll probably run into a few issues messing around with fonts too much, but you can easily load one from memory

  • @ronensuperexplainer
    @ronensuperexplainer 2 ปีที่แล้ว

    Wow. I was so waiting for this video

  • @charlestheanimator1676
    @charlestheanimator1676 2 ปีที่แล้ว

    Walnut looks great can't wait to see how it grows

  • @andrez383
    @andrez383 2 ปีที่แล้ว +4

    Hi Cherno! Fantastic video, exactly what i was looking for. I'm really learning a lot from all your videos, especially the C++ series.
    If you would make a follow up walnut video to show how to port a walnut application to mac that would be really awesome. Keep up the good work!

  • @ParhamSalamati
    @ParhamSalamati 2 ปีที่แล้ว +1

    This has been a very useful topic, Thank you for doing this Cherno ^_^

  • @ghbytdsrfhb
    @ghbytdsrfhb 2 ปีที่แล้ว

    that "start ." in cmd trick is sweet

  • @khalidabduljaleel
    @khalidabduljaleel ปีที่แล้ว

    Would love to see more videos on Walnut!

  • @bryanbendall973
    @bryanbendall973 2 ปีที่แล้ว +2

    I would love to see more of this and theming would be awesome!

  • @gijimbo1337
    @gijimbo1337 2 ปีที่แล้ว +8

    Excellent, thank you!
    Maybe this is out on a limb but I'd be interested to see a similar example using VS Code, CMake and MinGW-w64 tools instead of Visual Studio. That way a cross-platform application could be developed with a cross-platform toolset.

  • @Basel-ll8fj
    @Basel-ll8fj 2 ปีที่แล้ว

    i love the c++ series
    thank you 🌹

  • @meirzilkha
    @meirzilkha 2 ปีที่แล้ว +1

    Thank you so much!
    Was trying to render image using Vulkan and ImGUI! so many steps. So thank you very much on this.
    They should add the basic implementations for all backends in there example code.
    The Idea of Layers is great. so different parts of application can create a layer, and draw, and it will be taken care of drawing, in one main loop.
    Thanks. please continue sharing ImGui stuff and walnut.

  • @petrasvestartas4359
    @petrasvestartas4359 2 ปีที่แล้ว +15

    It would be nice if you could show how to use walnut as a visualizer. To push lines, pointclouds and triangles meshes to display.

  • @007LvB
    @007LvB 2 ปีที่แล้ว

    Good work! I like seeing it.

  • @xingwenju
    @xingwenju 2 ปีที่แล้ว

    quite useful this framework

  • @andrejbartulin
    @andrejbartulin 2 ปีที่แล้ว +4

    You recommended ImGui, installed it from Victor's tutorial. Also ImGui is really good except with OpenGL use a lot of GPU on old machines

  • @brooth2566
    @brooth2566 2 ปีที่แล้ว +1

    this man is nuts

  • @master138
    @master138 ปีที่แล้ว

    For ui, I use something called gempyre it's basically shows up a web browser but instead of using javascript you use c++ for the backend. I really like the idea. It is MIT BTW.

  • @a.aspden
    @a.aspden 2 ปีที่แล้ว +3

    Cool stuff as usual Cherno. I wouldn't mind seeing a video on theme customizations because I wasn't sure whether that is an imgui thing or you were thinking something else. :)

  • @wjrasmussen666
    @wjrasmussen666 2 ปีที่แล้ว +1

    I would love to see more videos per your commenting request.

  • @turgutbababalm9981
    @turgutbababalm9981 2 ปีที่แล้ว +1

    Thanks for doing this! finally a GUI tutorial from the best of the best C++ youtuber!

  • @nirgivon
    @nirgivon 2 ปีที่แล้ว +2

    A great video will be on how you create this build environment, and the differences between the debug and dist builds.
    And also, why did you choose to have the core and dependencies as different projects.
    Thanks for the great content.

  • @ZdenyWoW
    @ZdenyWoW 2 ปีที่แล้ว +1

    why are you creating the Walnut::Application with new and deleting it via delete instead of using smart pointers?

  • @demonking2526
    @demonking2526 2 ปีที่แล้ว

    Great vid! Nice haircut m8

  • @MrLoop-wz2sb
    @MrLoop-wz2sb 2 ปีที่แล้ว

    thank you for always making good contents.. real educational..

  • @MichaelAlcock
    @MichaelAlcock 2 ปีที่แล้ว +2

    Yan, I would love to know how to autosize(autoscale) windows. Currently they stay fixed and its so annoying.
    Also how to implement a landscape/portrait view

  • @ndmnet
    @ndmnet 2 ปีที่แล้ว

    I am watching this at the 8 month point since this video's release. Is title bar editing available with Walnut yet or is that still in development?

  • @ilgar.roshen
    @ilgar.roshen 2 ปีที่แล้ว +2

    Thanks !
    I was looking for a good GUI (Graphic User Interface) library for my project as a replacement for "Electron"
    [ which I use to create a nice looking window ]

  • @segfault-berlin
    @segfault-berlin 2 ปีที่แล้ว +1

    This looks like exactly what I need for a few projects. Will there be support for Linux and MacOS

  • @steamnotstem9047
    @steamnotstem9047 2 ปีที่แล้ว

    When I run walnut (4:03) it gives me an error saying it can't find this path: C:\Users\brayd\Desktop\Projects\Walnut Projects\Walnut\bin\Debug-windows-x86_64\WalnutApp\WalnutApp.exe
    So I go there, and there is only a log file called WalnutApp.log.
    Please help.
    Thanks,
    STEAM not STEM

  • @bobbill9865
    @bobbill9865 2 ปีที่แล้ว

    I'd love to see video(s) about changing the imgui theme!

  • @rudyfun3250
    @rudyfun3250 2 ปีที่แล้ว

    I see that there are PushLayers, but I don't see any PopLayers? How is pushing and popping supposed to work or what is the intended flow when making a GUI app?

  • @thomasmccallum376
    @thomasmccallum376 2 ปีที่แล้ว +1

    Why not use Qt for GUIs? You can do basically anything you want with Qt and it's automatically cross-platform.

  • @mwindowshz1869
    @mwindowshz1869 2 ปีที่แล้ว

    The Image class is good, but what if I want to render video?
    then each time calling SetData() consumes cpu and time uploading new image to GPU, is there a way to map and update image continuasly, so if original image pointer for exmpale a cv::Mat is changed, then the walnut image is mapped to the memory and no reuploding is done? so it will be faster? is this possible?

  • @JonMann87
    @JonMann87 2 ปีที่แล้ว

    I would love a video on customising dear imgui themes

  • @hybridspyda
    @hybridspyda 2 ปีที่แล้ว +1

    I'm getting an error when running the WalnutApp for the first time - I have Vulkan installed into a non-default location and added "%(VULKAN_SDK)\Include" to the C/C++ > General > Additional Include Directories but it's still saying that it cannot open source file "vulkan/vulkan.h" after doing that :(

    • @DFPercush
      @DFPercush 2 ปีที่แล้ว

      Try $ instead of %. Assuming you checked that environment variable actually exists.
      (edit) or %VULKAN_SDK%

    • @jukit3906
      @jukit3906 2 ปีที่แล้ว

      do you have vulkan installed ?

    • @darer13
      @darer13 2 ปีที่แล้ว

      I had issues with Vulkan. Wasnt installed. I installed it and then i had to restart my computer, but it worked then

    • @hybridspyda
      @hybridspyda 2 ปีที่แล้ว

      @@DFPercush I verified that this was using the correct path, I used the "Macros" section to check.

    • @hybridspyda
      @hybridspyda 2 ปีที่แล้ว

      @@darer13 I have the SDK installed, do I need to install something else in addition? Tried restarting my PC but still having the same issue.

  • @OperationDarkside
    @OperationDarkside 2 ปีที่แล้ว

    This looks really nice. The only thing bothering me is the "new" you need to create the Application instance.

  • @xvsvqc9663
    @xvsvqc9663 2 ปีที่แล้ว

    Do you reckon it's possible to make a c# wrapper for walnut?

  • @jayshay7416
    @jayshay7416 ปีที่แล้ว

    What Visual Studio Theme is that?

  • @utu009d
    @utu009d 2 ปีที่แล้ว

    Cool! Thanks for your job! A have started to follow your videos few days ago, because of ImGUI :-) For sure, I will give a try to the Walnut, I am pretty new to "gaming C++". Anyway, do you know Poco framework? Do you thing, is possible to use ImGUI/Walnut as UI layer fot this framework? I would like to implement some calculations out of the main loop (data analysys, networking) and flush the results to a graph. Tips are appreciated :-)

  • @TheBlackRogue96
    @TheBlackRogue96 2 ปีที่แล้ว

    Great video. Would love to see a video on how you manage to make resizable Windows windows with 0 borders and a custom titlebar

  • @D0sart
    @D0sart 2 ปีที่แล้ว

    Why do you use the QT?

  • @matsomo
    @matsomo 2 ปีที่แล้ว +1

    Still waiting for Cherno to name one of his projects Deeznuts

  • @blancatrujillohigueras9865
    @blancatrujillohigueras9865 2 ปีที่แล้ว

    Hi , Cherno.. What do you thing about rust language for use in graphics , and it will be interesting that with yours skills , one project open source like autocad , for drawing, no one made something similar with opengl or directx or vulkan..

  • @kirammanenjoyer
    @kirammanenjoyer 2 ปีที่แล้ว +3

    Hello cherno. I’m curious when do you plan to add distribution to hazel 2D to export games? I tried to code my own solution but it doesn’t work at all. They don’t teach this stuff at school😞

    • @darer13
      @darer13 2 ปีที่แล้ว +1

      yo. i dont know much but maybe we can work on it together?

    • @kirammanenjoyer
      @kirammanenjoyer ปีที่แล้ว

      @@darer13 hey bro sorry for late reply 😅 I did not receive notification about your comment. Did you figure it out? Would you like to add me on discord?

  • @Chendadon
    @Chendadon 2 ปีที่แล้ว

    video suggestion: intro to shaders, metal shader and overall how to incorporate shaders in different platforms. THANKS !!

  • @MilosTrickovic
    @MilosTrickovic 2 ปีที่แล้ว

    show us a detailed video how to make a custom style for ImGui, this would be nice since it is not very well documented

  • @x1Ricardo
    @x1Ricardo 2 ปีที่แล้ว

    What is your opinion of U++?

  • @davidfrischknecht8261
    @davidfrischknecht8261 2 ปีที่แล้ว +1

    A big showstopper for me is the inability to make it look like a native app.

  • @Chainelove
    @Chainelove 2 ปีที่แล้ว

    Can we sign the executable that is produced by dist ? It's something I never did and am really curious about :p
    I always get warnings when I launch an executable I made on a different computer.

  • @killua287
    @killua287 2 ปีที่แล้ว

    Is there a devlog coming for the ludum dare game?

  • @adamoolah
    @adamoolah 8 หลายเดือนก่อน

    but, how can you set this up on linux?

  • @vaanidel2117
    @vaanidel2117 2 ปีที่แล้ว

    Is there any benefit to the layer stack being set up the way it is here (using shared pointers) vs how it's set up in Hazel (raw pointers)? Would Hazel benefit from the shared_ptr approach at all?

  • @wreptar1938
    @wreptar1938 2 ปีที่แล้ว +1

    Hey, I'm trying to learn the Win32 library, I was wondering if anyone can tell me how to find out what every macro / function does and where to look. This applies to every library too I suppose so if you know that would be a great great help.

  • @MegaMech
    @MegaMech 2 ปีที่แล้ว +1

    How to add Vulkan to sm64port:
    When?

  • @absoriann
    @absoriann 2 ปีที่แล้ว

    Hi, what do you think about clion ide?

  • @GustavoValdiviesso
    @GustavoValdiviesso 2 ปีที่แล้ว

    I am interested in seeing more about customization.

  • @SandeepKumarP
    @SandeepKumarP 2 ปีที่แล้ว +1

    A series on this would be great. It can be an independent series which does everything from scratch including styling. In The end, it can plug into the OpenGL and Game Engine series.

  • @dexzoyp
    @dexzoyp 2 ปีที่แล้ว

    It will be really cool to make the project with CMake build system and show on camera, how to write CMakeLists...

    • @Meddten
      @Meddten 2 ปีที่แล้ว

      He said he hates cmake

  • @zhousam9783
    @zhousam9783 2 ปีที่แล้ว

    I like the font you use in visual studio, will you please share it here? 😊

  • @georgecop9538
    @georgecop9538 2 ปีที่แล้ว

    This video gave me the idea to create a wrapper around Win32. (I kid you not I'm not crazy). It is not finished, I don't have any repo (yet).

  • @sebleaf8433
    @sebleaf8433 2 ปีที่แล้ว

    Would love a follow up!

  • @amirhosein2835
    @amirhosein2835 2 ปีที่แล้ว

    Dear cherno!
    how can we make an adjustable scrollbar in imgui?

  • @fitty560
    @fitty560 ปีที่แล้ว

    How to setup this for Visual Studio CODE?

  • @msaad2796
    @msaad2796 ปีที่แล้ว

    is there any c++ gui app tutorials for beginners?

  • @chrischoir3594
    @chrischoir3594 2 ปีที่แล้ว

    why not just use visual studio internal tools to make ui?

  • @wanderingzanzey2126
    @wanderingzanzey2126 2 ปีที่แล้ว

    Hey man, loving Walnut. How do i style it though? I am having issues setting styles - keeps giving me erros when i try to use `ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 5);` - love to kow how to get this up and running with custom styles.

  • @dibyojyotibhattacherjee4279
    @dibyojyotibhattacherjee4279 2 ปีที่แล้ว

    Hey can you do a video on what type of editor should a beginner use for c++, ide or normal text editor?

    • @dancode9738
      @dancode9738 2 ปีที่แล้ว

      Visual Studio is free and that is what Cherno is using here.

  • @SYBIOTE
    @SYBIOTE 2 ปีที่แล้ว

    aah , I wish we get a macOS build soon

  • @mystisification
    @mystisification 2 ปีที่แล้ว

    Thanks for the video! I wonder what you (or other viewers) would advise to make a text editor. What kind of framework for example?

  • @ruddymolina7044
    @ruddymolina7044 2 ปีที่แล้ว

    Hey man do you know something like wxWidgets but lighter and without that 2gb of dlls. ?

  • @RagdollRocket
    @RagdollRocket 2 ปีที่แล้ว

    Is there any way to add unit tests for Immediate Mode GUI? thank you for your video!

  • @bhavindharia8304
    @bhavindharia8304 2 ปีที่แล้ว

    I love your videos. But Qt is the best framework for c++ gui😁

  • @charr6108
    @charr6108 2 ปีที่แล้ว

    yo cherno, how to add a window icon for apps for windows 10?
    and how to auto dock the window to the dock space and auto hide the tab bar? :D

  • @cchheww
    @cchheww 2 ปีที่แล้ว

    Pleaaaaaaase make more videos on tutorials for making GUI. i have a big final project and i have to make a GUI and i want to use walnut for it ;-;

  • @Mitch_Crane
    @Mitch_Crane 2 ปีที่แล้ว +1

    Where did the name Walnut come from?

    • @yassin_eldeeb
      @yassin_eldeeb 2 ปีที่แล้ว +2

      Well...hazel(hazelnut), most of the code is inspired by hazel, It's all nuts.

    • @hatemel-kharashy8856
      @hatemel-kharashy8856 2 ปีที่แล้ว

      Hazelnut is the engine editor. Maybe this was the inspiration for "Walnut" name

  • @ilieschamkar6767
    @ilieschamkar6767 2 ปีที่แล้ว

    Ok, something is not clear to me.
    Why create a smart pointer of an image instead of just an Image on the stack
    Why I keep seeing people using (smart) pointers instead of the normal objects?

    • @theEndermanMGS
      @theEndermanMGS 2 ปีที่แล้ว +1

      It avoids expensive copy operations without introducing the possibility leaving a dangling reference after the resource goes out of scope.

    • @atib1980
      @atib1980 2 ปีที่แล้ว

      @@theEndermanMGS True, but you can still create it as a stack based object as part of a wrapper class type in a function (main) or before an event loop that's run until the end of the program or you could also create it as a static object (not a good idea if mulitiple threads need to access it unless it's declared as const or if it's well protected by some kind of thread synchronization primitive with adequate level of granularity taken into consideration) in a function (main) or even as a global object and when you need to pass it around to other functions, methods you pass it by & or const&. Allocating objects on the heap can become costly especially if you need to do it many times in a loop (event loop), because your program has to make an operating system level API call to reserve the necessary amount of memory and then construct the object in place and return a pointer to it. Still as you said if your Image object is huge and you don't need to construct a new one, deconstruct the old one many times in a loop, then using make_unique(...) is a reasonable thing to do.

    • @CalebKlomparens
      @CalebKlomparens 2 ปีที่แล้ว +2

      A full-sized image could blow the stack. Image data almost certainly belongs on the heap.

    • @ilieschamkar6767
      @ilieschamkar6767 2 ปีที่แล้ว

      @@CalebKlomparens what are the sizes for the stack and the heap in c++?
      I tried to google it and the results were confusing :/

    • @CalebKlomparens
      @CalebKlomparens 2 ปีที่แล้ว +1

      @@ilieschamkar6767 It's not so much about the size of the stack (though it's almost always waaaaay smaller than the available heap), and more that the size is fixed and unchangeable and meant for tracking program execution, not so much dynamic resources. Use too much stack and it's over, no possible way to recover the program, but use too much heap and recovery is still possible.

  • @raphaeljaggerd3585
    @raphaeljaggerd3585 ปีที่แล้ว

    Please teach us how to make a framework like walnut

  • @ultrablack7271
    @ultrablack7271 2 ปีที่แล้ว

    Why not qt? What are the advantages?

  • @genenorton2880
    @genenorton2880 2 ปีที่แล้ว

    I'm new to ImGUI and vulkan but your work on walnut looks very useful. However, when I follow your video, first it does not compile because I don't have Vulkan. So I downloaded vulkan sdk. Re-ran your setup script. Now it builds but does not run because it can't find the vulkan dll. installed the vulkan runtime. Now it crashes/aborts with: [vulkan] Error: VkResult = -9.
    Can you or someone point me to a beginners guide for vulkan and imgui?
    Any plans to have Walnut work with directx?
    Thanks for the video, looking forward to more on this.

  • @AlexandreLiscia
    @AlexandreLiscia 2 ปีที่แล้ว

    Hi, I love the initiative. Do you know if there is a way to use it with Rust lang ?

    • @darer13
      @darer13 2 ปีที่แล้ว

      You would need to call the C/C++ call from rust. im not sure how compatible the two are.

  • @sebastiangudino9377
    @sebastiangudino9377 2 ปีที่แล้ว

    Dude. Imgui is really, nice to use. But it's pretty ugly and not very customizable (In terms of design). Is there any fix for this? Or I'm stuck with writing my own UI components with OpenGL?

  • @Silencer1337
    @Silencer1337 2 ปีที่แล้ว

    I am allergic to nuts; can I still use the project? /namingtirade

  • @daniel__landgraf
    @daniel__landgraf 2 ปีที่แล้ว

    Is the Game Engine series dead?

  • @CunningBard
    @CunningBard 2 ปีที่แล้ว +2

    Im not used to cherno with really short hair,

  • @hidemat5141
    @hidemat5141 2 ปีที่แล้ว

    Is hazel ready for production and available to the public?

    • @SnakeEngine
      @SnakeEngine 2 ปีที่แล้ว +1

      if you are serious about game dev you should use something battletested as unity and not engines in their infancy.

    • @hidemat5141
      @hidemat5141 2 ปีที่แล้ว +2

      @@SnakeEngine That doesn't really answer my question...

    • @SnakeEngine
      @SnakeEngine 2 ปีที่แล้ว +1

      @@hidemat5141 It does. Use Unity, not Hazel for now.

    • @hidemat5141
      @hidemat5141 2 ปีที่แล้ว +1

      @@SnakeEngine I'm not asking what Engine to use.... I'm well aware of unity. I'm asking the creator of Hazel, not @SnakeEngine, the status of his game engine...
      ... people on the internet these days... geesh...

    • @loanselot325
      @loanselot325 2 ปีที่แล้ว

      hazel definitely wont be available for public since there are people who paid for it. is it production ready? well kind of depends what kind of game you want. will there be free version of hazel? well there is hazel 2d but, eh...

  • @ruddymolina7044
    @ruddymolina7044 2 ปีที่แล้ว

    someone knowns what IDE is using Master Cherno?

  • @Awwe12675
    @Awwe12675 2 ปีที่แล้ว

    I have question
    How GUI works? I mean how

  • @RunTheTape
    @RunTheTape 2 ปีที่แล้ว

    nice. is it crossplatform ?

  • @CreativeOven
    @CreativeOven 2 ปีที่แล้ว

    Is this like to make idk some app like idk. anything? Maybe 2d games, this walnut? Open gl?

  • @abrarmasumabir3809
    @abrarmasumabir3809 2 ปีที่แล้ว +1

    Mr.Cherno what visual studio theme and color scheme
    are you using?

  • @b4ttlemast0r
    @b4ttlemast0r 2 ปีที่แล้ว

    this looks pretty useful if you are gonna work on it a bit more. I'd like to see how to remove the dockspace in a future video once that's possible

  • @beProsto
    @beProsto 2 ปีที่แล้ว +4

    vulkan 😳

  • @Xphy
    @Xphy 2 ปีที่แล้ว

    Error setupVulkan err=-9 abort() has called

  • @paulred9136
    @paulred9136 2 ปีที่แล้ว +1

    Hi, and thanks for your videos, Can you make a video that explains the difference between Cuda, Optix and Sfml and SDL if you can use them with OpenGL or Vulkan or are just other things... I'm a bit confused about this libraries, thanks