Helping with amateaur programmer
-
[SOM]Roberto
Helping with amateaur programmer
Hi! Help me anybody! Where is all examples source files for example modells textures etc.?? Irrlict SDK is empty modells etc. Where I can downloading? I will programming the kdevelop system with Linux. Where I download the irrlict game examples or more examples? Last question: how i can do mirror plane in Irrlicth engine?

Download the SDK and unzip it, everything is includet to it, just browse the folders !!!
For mirrors have a look at the "Render to Texture" demo, I think this is a good start for this...
For mirrors have a look at the "Render to Texture" demo, I think this is a good start for this...
while(!asleep) sheep++;
IrrExtensions:
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
IrrExtensions:

http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
-
[SOM]Roberto
Thank you! I see the sysdney.md2 etc. in media library.Acki wrote:Download the SDK and unzip it, everything is includet to it, just browse the folders !!!
For mirrors have a look at the "Render to Texture" demo, I think this is a good start for this...
Render to Texture demo hmm. I searching....
I practise the tutorials and work on the Tetris 3d game.
I search the 3d modeller programs: 3d max, blender, milk shape ect. I use the .blend format my game, I think. I want use the 3D words my game.
Where can I download the more open source irrlict demo or tutorial? Link please.
[quote=[SOM]Roberto]
Where can I download the more open source irrlict demo or tutorial? Link please.
[/quote]
http://irrforge.org
http://www.irrdev.com
Where can I download the more open source irrlict demo or tutorial? Link please.
[/quote]
http://irrforge.org
http://www.irrdev.com
-
[SOM]Roberto
-
[SOM]Roberto
What do you mean with "3d words"? Strings composed by 3d letters?[SOM]Roberto wrote:I very happy because build and run the first irrlict tutor on Live Linux CD with Kdevelop system. Running the 3D programs softvare render only!
-I use the 3D words my game. - Can I do it wit irrlict system![]()
-I want download more serious demos or simple games. - Where can I download
For Irrlicht powered tools & games, look @ the wiki:
Irrlicht Powered Games: http://www.irrforge.org/index.php/Irrli ... ered_Games
Irrlicht Based Tools:
http://www.irrforge.org/index.php/Irrli ... ered_Tools
I'd rather have a search engine or a compiler on a deserted island than a game.
John Carmack
John Carmack
-
[SOM]Roberto
Thanks!Megaman wrote:What do you mean with "3d words"? Strings composed by 3d letters?[SOM]Roberto wrote:I very happy because build and run the first irrlict tutor on Live Linux CD with Kdevelop system. Running the 3D programs softvare render only!
-I use the 3D words my game. - Can I do it wit irrlict system![]()
-I want download more serious demos or simple games. - Where can I download
For Irrlicht powered tools & games, look @ the wiki:
Irrlicht Powered Games: http://www.irrforge.org/index.php/Irrli ... ered_Games
Irrlicht Based Tools:
http://www.irrforge.org/index.php/Irrli ... ered_Tools
3D words for example: http://nehe.gamedev.net/lesson.asp?index=03 "Outline fonts" tutorial
- I saw the ne-he openGL example. - Can I do the 3D fonts with irrlict egnie
- Do I make the 3D fonts modell loading only
-
Guest
man, you seriously have to write a bit more clearly because its not easy to understand what you mean 
just download the irrlicht sdk, there is everything you need: models, textures, irrlicht source, irrlicht include files, irrlicht libs, irrlicht examples, irrlicht demos, irrlicht api documentation,irrlicht tools,irrlicht exporters ... what do you want more?
and if you want 3d fonts, why dont you just model them in blender, export them with directx exporter included with irrlicht, and use them in in the irrlicht engine?
hope i could help you a bit
just download the irrlicht sdk, there is everything you need: models, textures, irrlicht source, irrlicht include files, irrlicht libs, irrlicht examples, irrlicht demos, irrlicht api documentation,irrlicht tools,irrlicht exporters ... what do you want more?
and if you want 3d fonts, why dont you just model them in blender, export them with directx exporter included with irrlicht, and use them in in the irrlicht engine?
hope i could help you a bit
-
[SOM]Roberto
Ok OK. I download the irrlict demos, irrlict games, irrlict sdk, irrlict tutorial, irrlict engine, irrlict ectGFXstyLER wrote:man, you seriously have to write a bit more clearly because its not easy to understand what you mean
just download the irrlicht sdk, there is everything you need: models, textures, irrlicht source, irrlicht include files, irrlicht libs, irrlicht examples, irrlicht demos, irrlicht api documentation,irrlicht tools,irrlicht exporters ... what do you want more?
and if you want 3d fonts, why dont you just model them in blender, export them with directx exporter included with irrlicht, and use them in in the irrlicht engine?
hope i could help you a bit
3D fonts are simple things. You said that I can't make 3D fonts with great graphic engine. Hmm... Is the Ne-he 3D fonts is elementary tutorial. Ok. I make 3D fonts modells with blender.
Thank you very much the helping everybody.
-
[SOM]Roberto
-
[SOM]Roberto
-
[SOM]Roberto
Refresh rate answer later. OK. Next question: How do I programming the buttons, combo boxes etc events in class.
For example the real tech demo code is bad:
When I click the button, nothing do anything
if (event.EventType == irr::EET_MOUSE_INPUT_EVENT &&
if (event.EventType == EET_GUI_EVENT)
{
s32 id = event.GUIEvent.Caller->getID();
switch(id)
{
case 2:
if (event.GUIEvent.EventType == gui::EGET_BUTTON_CLICKED )
{
device->closeDevice();
start = true;
break;
}
}
return false;
}
My code is bad too:
bool CMainMenu::OnEvent(irr::SEvent event) {
using namespace irr;
using namespace gui;
if (event.EventType == EET_GUI_EVENT) {
s32 id = event.GUIEvent.Caller->getID();
switch(event.GUIEvent.EventType) {
case EGET_BUTTON_CLICKED:
if(id == GSI_GUI_BTN_QUIT) {
device->closeDevice();
start = true;
return true;
}
break;
}
}
return false;
}
- Somebody help me button etc. event in class
- Refresh rate reach is impossible
For example the real tech demo code is bad:
When I click the button, nothing do anything
if (event.EventType == irr::EET_MOUSE_INPUT_EVENT &&
if (event.EventType == EET_GUI_EVENT)
{
s32 id = event.GUIEvent.Caller->getID();
switch(id)
{
case 2:
if (event.GUIEvent.EventType == gui::EGET_BUTTON_CLICKED )
{
device->closeDevice();
start = true;
break;
}
}
return false;
}
My code is bad too:
bool CMainMenu::OnEvent(irr::SEvent event) {
using namespace irr;
using namespace gui;
if (event.EventType == EET_GUI_EVENT) {
s32 id = event.GUIEvent.Caller->getID();
switch(event.GUIEvent.EventType) {
case EGET_BUTTON_CLICKED:
if(id == GSI_GUI_BTN_QUIT) {
device->closeDevice();
start = true;
return true;
}
break;
}
}
return false;
}
- Somebody help me button etc. event in class
- Refresh rate reach is impossible
-
Guest