Search found 10 matches

by Kamerik
Sun Nov 27, 2022 7:11 pm
Forum: Beginners Help
Topic: IrrAssimp Unresolved External Symbol
Replies: 3
Views: 881

Re: IrrAssimp Unresolved External Symbol

It worked, though the scale is way too big lol!

Image

It's easily fixed though, thanks once again for the help. :)
by Kamerik
Sun Nov 27, 2022 6:51 pm
Forum: Beginners Help
Topic: IrrAssimp Unresolved External Symbol
Replies: 3
Views: 881

Re: IrrAssimp Unresolved External Symbol

I'll give that a try. assimp-vc142-mtd.lib is the assimp lib. IrrAssimp doesn't have a lib, the github just says "The files of the subfolder "IrrAssimp" included in your project."
by Kamerik
Sun Nov 27, 2022 6:28 pm
Forum: Beginners Help
Topic: IrrAssimp Unresolved External Symbol
Replies: 3
Views: 881

IrrAssimp Unresolved External Symbol

Hi,

I am trying to get animated meshes working in Irrlicht but have no idea how to convert my animated model to a b3d or similar. However, I've managed to find the library IrrAssimp and I'm currently trying to get that set up so I can use animated FBX models in Irrlicht.

https://github.com/JLouis ...
by Kamerik
Sun Oct 30, 2022 10:19 pm
Forum: Beginners Help
Topic: OpenGL Renderer crashes when I delete anything
Replies: 15
Views: 2059

Re: OpenGL Renderer crashes when I delete anything

Yeah, you were right. I moved the EventReceiver to my GraphicsSubsystem class in the header file and I can use it without any errors. I won't be making that mistake again. :oops:
by Kamerik
Sun Oct 30, 2022 1:16 pm
Forum: Beginners Help
Topic: OpenGL Renderer crashes when I delete anything
Replies: 15
Views: 2059

Re: OpenGL Renderer crashes when I delete anything

I tried what Seven suggested and it didn't return or log anything so I tried what CuteAlien suggested and compiled Irrlicht in Debug mode.

Thank you so much, I should have thought of this earlier but I'm an idiot. With Irrlicht compiled in Debug Mode, this is where the exception is thrown:

https ...
by Kamerik
Sat Oct 29, 2022 11:20 am
Forum: Beginners Help
Topic: OpenGL Renderer crashes when I delete anything
Replies: 15
Views: 2059

Re: OpenGL Renderer crashes when I delete anything

Sorry for the delay in responding.

I've changed my Event Handler and the way I dispose of events a bit and it seems to be working now though I still have no idea what the problem is and I still can't spawn in new GameObjects. The reason I'm so confused is the same exact code for the Event Handler I ...
by Kamerik
Thu Oct 27, 2022 3:45 pm
Forum: Beginners Help
Topic: OpenGL Renderer crashes when I delete anything
Replies: 15
Views: 2059

Re: OpenGL Renderer crashes when I delete anything

Apologies, I should have taken a clearer snip and explained it better.

The event I'm deleting isn't an IrrIMGUI event, it's my own event class I have created for this project. I have an Event Handler class with a list of Event pointers which I retrieve with GetEvents(). When I press a key, move the ...
by Kamerik
Thu Oct 27, 2022 1:51 pm
Forum: Beginners Help
Topic: OpenGL Renderer crashes when I delete anything
Replies: 15
Views: 2059

OpenGL Renderer crashes when I delete anything

Hi,

I'm having a huge problem using the OpenGL renderer with Irrlicht and it's driving me insane, I'd appreciate any help with it.

So I'm working on a very basic game engine for my university coursework and I'm using Irrlicht for the graphics part. I've set up a basic scene with a few models and ...
by Kamerik
Tue Oct 18, 2022 6:21 pm
Forum: Beginners Help
Topic: Culling Issue
Replies: 3
Views: 281

Re: Culling Issue

I knew it would be something simple I'd missed!

That worked, thanks so much for the help! :)
by Kamerik
Tue Oct 18, 2022 5:53 pm
Forum: Beginners Help
Topic: Culling Issue
Replies: 3
Views: 281

Culling Issue

Hi,

I'm working on project for university and I have decided to use Irrlicht for the graphics. I've set up a basic scene easily enough, but I tried to add a big plane model to my scene to act as a floor and for some reason it was invisible.

I did some trial and error, reduced the size a bit and ...