Questions tagged [irrlicht]

Irrlicht is a free open-source cross-platform real-time 3D engine written in C++. The engine is free for open source and commercial use under the zlib/libpng license.

Irrlicht, like others 3D engines (Ogre, Unity, CrystalSpace, ), enables you to create 3D games and programs without having to deal with low level details.

In a few lines of code, you can load a complex mesh created in a 3D modeling software like Blender, apply a texture to it, add some lighting, fog and other visual effects, render it and even animate it.

For a complete description of the features of the engine, checkout the list of features.

Useful links

164 questions
1
vote
1 answer

Irrlicht Compiles, but Crashes on Execution

I have irrlicht 1.6 on my computer and I use codeblocks + tdm-gcc MinGW 4.7. What the situation is is that when I compile an example program, it compiled fine, but when I try to run it, it always give me a segmentation fault error. It returns with…
Ripspace
  • 551
  • 6
  • 21
1
vote
1 answer

Keyboard events don't work with irrlicht on Xcode

When I run my Irrlicht application in Xcode, I can't use keyboard input: If I press a key while the application is running, I end up writing that letter on whichever window was opened before the application, for example: I'm editing my code, than I…
StinkyCat
  • 1,236
  • 1
  • 17
  • 31
1
vote
1 answer

Error linking libxxx.so in Native Client (NaCl)

I am struggling to link libIrrlicht.so file with my example source files. Here is my makefile PROJECT:=testirrlicht LDFLAGS:=-lppapi_gles2 -lppapi_cpp -Iinclude -lppapi libs/libIrrlicht.so CXX_SOURCES:=testirrlicht.cc   THIS_MAKEFILE:=$(abspath…
codetiger
  • 2,650
  • 20
  • 37
1
vote
1 answer

Convert a irr::c8 to a wchar_t*

I'm making a 3D environment, and I want to make it so that when you pass the crosshair over an object, some text with its description pops up. But I have this really annoying string format thing in the way. …
Magicaxis
  • 371
  • 7
  • 16
1
vote
2 answers

How do I start with 3D tile based game

I'd like to write a strategy game where it's map will be 3D tiled. I've read some articles on gamedev but most of them are trying to implement 3D in 2D space. I wonder how in nowadays it is implemented using 3D cards. I wonder if using Irrlich will…
ternyk
  • 571
  • 1
  • 5
  • 10
0
votes
1 answer

Using python regex for automating android jni methods signatures generation

I used SWIG for generating some native JNI function interface for Irrlicht C/C++ 3D engine, and I got a bunch of java proxy classes and an intermediate c/c++ files which implements the java native functions to glue the java proxy classes and…
David
  • 3,843
  • 33
  • 36
0
votes
1 answer

key not found in dictionary C# irrlicht lime error

i get an error saying key could not be found in dictionary. even if i set that exact key with value right before checking that value; i am using irrlicht lime. im still new to this engine and irrlicht lime documentation is non existent so ive been…
bard mask
  • 1
  • 1
0
votes
0 answers

How to access DX9 HLSL shader depth information - spotlight effect

I am trying to convert a post processing vignette into a decent torchlight effect and have the centre position brighter instead of the dark edges now but unable to work out depth buffer so as to get depth adjustments. Can anyone help me with this…
0
votes
1 answer

ASSIMP Convert .blend to .x with skeleton (armature) and Irrlicht

I'm using Assimp to convert .blend files to .x. The mesh converted well, but when I access the joints I get the scene elements like camera, root, armature. There is some way to export only the mesh and bones?
0
votes
1 answer

How to terminate an application when an error happnes?

I am using a Graphics Library called Irrlicht at some point i have to write this code if(!device){ //error code here` } i am not in the main function but want to close the application when this error happens please keep in mind that I…
0
votes
1 answer

Cmake: find_library doesn't work but find_path does (same path)

I am trying to build a cross platform school project in C++ with CMake. My project requires the use of the Irrlicht library and must compile under Linux and Windows 10. The project source path contains a lib folder, containing the Irrlicht header…
0
votes
0 answers

Irrlitch Projects Not Loading In Visual Studio Code

Actually I Just Completed with My entire C++ Courses. I Am Into game development Stuff, As A Beginner a Using Irrlitch game Engine, And visual Studio Code Community 2019. I have tried so hard to build all examples in projects but I wasn't able to…
0
votes
1 answer

Irrlicht Human Mesh Animation

does anybody know how anime(move) Human body Parts in Irrlicht. I only found Animathion for the whole mesh. I´m using makehuman.org mesh and want only to move the hand or the leg in irrlicht. There are riggins and bones in the mesh but I dont know…
Orri
  • 920
  • 1
  • 8
  • 20
0
votes
1 answer

Undefined reference when using "Hello world" of Irrlicht library

I'm trying to compile the very first code given by Irrlicht library website. As said in the title, I get an undefined reference. I'm using 8.2 netbeans IDE. This is what I've done so far : Installed Irrlicht library from the Linux repository (I'm…
TheViper
  • 39
  • 4
0
votes
1 answer

How create a atom model in c++ with irrlicht

I am working on a project in which I show a model of a atom with protons, neutrons, and electrons. I want to show the neutrons and protons like a atom model would and so I need some points to put my points around. So I need an function like…