Search found 6 matches
- Sat Dec 02, 2023 1:22 am
- Forum: Code Snippets
- Topic: working on an editor for irrlicht
- Replies: 4
- Views: 7236
Re: working on an edito for irrlicht
In case you are interested, there was once a grid node posted here: https://irrlicht.sourceforge.io/forum/viewtopic.php?p=277317
And I made a somewhat updated version of that which can be found in here: https://github.com/mzeilfelder/irr-playground-micha
i just went to the github. you have a ...
- Fri Dec 01, 2023 3:30 pm
- Forum: Code Snippets
- Topic: working on an editor for irrlicht
- Replies: 4
- Views: 7236
Re: working on an edito for irrlicht
Very careful with the version number :-)
In case you are interested, there was once a grid node posted here: https://irrlicht.sourceforge.io/forum/viewtopic.php?p=277317
And I made a somewhat updated version of that which can be found in here: https://github.com/mzeilfelder/irr-playground-micha ...
- Fri Dec 01, 2023 4:26 am
- Forum: Code Snippets
- Topic: working on an editor for irrlicht
- Replies: 4
- Views: 7236
working on an editor for irrlicht
wxWidgets-Irrlicht-Editor
irrlicht editor using wxwidgets similar to irredit
I'm new to all of this so I know the code is horrendous and the upload isn't organized but its simple enough to put together. i compiled both irrlicht and wxWidgets from source.
the current (barely) "working" features ...
irrlicht editor using wxwidgets similar to irredit
I'm new to all of this so I know the code is horrendous and the upload isn't organized but its simple enough to put together. i compiled both irrlicht and wxWidgets from source.
the current (barely) "working" features ...
- Sun May 28, 2023 5:14 am
- Forum: Beginners Help
- Topic: cant find key in dictionary, using irrlicht lime
- Replies: 2
- Views: 818
Re: cant find key in dictionary, using irrlicht lime
i made it work using a foreach loop with a key value pair, but i still want to know how to access a specific key value without having to loop through the whole dictionary to get it.
- Sun May 28, 2023 3:42 am
- Forum: Beginners Help
- Topic: cant find key in dictionary, using irrlicht lime
- Replies: 2
- Views: 818
Re: cant find key in dictionary, using irrlicht lime
Heres the full code, please note that im very new to irrlicht and the documentation for irrlicht lime sucks so im having to guess from the irrlicht documentation. so far all most all classes and functions are very close.
i know that the if statements in the for loops is incorrect and all i get is ...
i know that the if statements in the for loops is incorrect and all i get is ...
- Sun May 28, 2023 3:38 am
- Forum: Beginners Help
- Topic: cant find key in dictionary, using irrlicht lime
- Replies: 2
- Views: 818
cant find key in dictionary, using irrlicht lime
i get an error saying dictionary doesn't contain key, any key i check for manually does not exist even if i assign it right before checking eg:
this is inside 3 for loops
Console.WriteLine("added dirt voxel at : " + new Vector3Di(x, y, z));
voxels.Add(new Vector3Di(x, y, z), new Voxel(VoxelType ...
this is inside 3 for loops
Console.WriteLine("added dirt voxel at : " + new Vector3Di(x, y, z));
voxels.Add(new Vector3Di(x, y, z), new Voxel(VoxelType ...