Jump to content

Vida Marcell

Members
  • Posts

    320
  • Joined

  • Last visited

Everything posted by Vida Marcell

  1. Hi everyone, i'm a beginner at c++ coding this is why i cant solve this easy problem, anyways. As you can see there is a listview. Imagine the listview as the handle of a tabber widget, and the "Ügyfél adatai" panel as the panel wich is controlled by the tabber, so when i select one of the "people" it shows his data one the panel, and i also want the "Ügyfél hozzáadása" panel to add people to the listview. Now i dont want anybody to create code for me, i just need help to how make it, so it would be helpful if someone could write down how to do it, also i dont need help on storing the data i know how to do that. Thank you everyone! (if this doesnt understandable, im sorry, its hard to tell. )
  2. I'm having a problem with texts, UAK cant display accents. I don't really think this is a bug, Josh just wasnt thinking about it. (by the way this is Hungarian).
  3. Hi everyone, someone can tell me why and when do you need pointers, please dont use programmer phrases.
  4. I mean you have to understand the logic of programming and game development. But dont worry Ultraengine community helps a lot, helps your code work and so on.
  5. Dude, you will need to learn more about game and software development.
  6. Hi everyone, i finished my UAK ui, and now i have to implement 3d graphics to my project, i wanted to use Directx, but i changed my mind, because if i use DX the cross platform capability of UAK would gone, so i choosed OpenGl. Now the question is, wich course should i choose from below, i know that there are courses that are free, but i want to go with one of these: Modern OpenGL C++ 3D Game Tutorial Series & 3D Rendering | Udemy OpenGL + C++: Modern Graphics for Groundbreaking Games | Udemy Learn Modern OpenGL Programming | Udemy thanks for the answers!
  7. Vida Marcell

    glTF Export

    Only those? nice work
  8. Vida Marcell

    glTF Export

    i think nobody asked this question before, so what libary/sdk does leadwerks made with?
  9. i want to learn DX11, and just making sure if i can use UAK with it
  10. Vida Marcell

    Editor WIP

    Hi Josh, are those rounded buttons on the toolbar will be programmable in UAK?
  11. i just downloaded the ,,wrong" version of visual studio, just making sure that nothing wrong is going to happen if i use the 2022 version
  12. Vida Marcell

    Editor WIP

    Wow this looks really good, how soon you gonna release it?
  13. Hi, after i finished my user interface im going to build a 3d viewport/3d model viewer with opengl, where should i start?
  14. #include "UltraEngine.h" using namespace UltraEngine; const int STATUSBARHEIGHT = 32; const int SIDEPANELWIDTH = 300; const int CONSOLEHEIGHT = 120; int main(int argc, const char* argv[]) { //Get the displays auto displays = GetDisplays(); //Create a window auto window = CreateWindow("Ultra Engine", 0, 0, 920, 680, displays[0]); //Create User Interface auto ui = CreateInterface(window); iVec2 sz = ui->root->ClientSize(); auto mainmenu = CreateMenu("", ui->root); mainmenu->SetColor(0, 1, 1); auto statusbar = CreatePanel(0, sz.y - STATUSBARHEIGHT, sz.x, STATUSBARHEIGHT, ui->root); statusbar->SetLayout(1, 1, 0, 1); statusbar->SetColor(0, 1, 0); auto mainpanel = CreatePanel(0, mainmenu->position.y + mainmenu->size.y, sz.x, sz.y - mainmenu->size.y - mainmenu->position.y - statusbar->size.y, ui->root); mainpanel->SetLayout(1, 1, 1, 1); sz = mainpanel->ClientSize(); mainpanel->SetColor(0, 0, 1); auto sidepanel = CreatePanel(sz.x - SIDEPANELWIDTH, 0, SIDEPANELWIDTH, sz.y, mainpanel); sidepanel->SetLayout(0, 1, 1, 1); sidepanel->SetColor(1, 0, 0); while (window->Closed() == false) { WaitEvent(); } return 0; }
×
×
  • Create New...