About Store Forum Documentation Contact



Post Reply 
Shared\Obj\Obj
Author Message
jagatai Offline
Member

Post: #1
Shared\Obj\Obj
Anyone else unable to derive from EE2.0 using Ineisis 2.0;

Code:
virtual void create(flt angle, C Game.ObjParamsPtr &obj_params) { LogN("Test");}

Test never shows.

Where is this create derived from?

-J
(This post was last modified: 06-30-2013 06:57 PM by jagatai.)
06-30-2013 04:55 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Shared\Obj\Obj
This func is first defined in Ineisis: "Shared/Obj/Obj" file, "Obj" class (please don't confuse this class with "EE.Game.Obj" as they're 2 different classes)

All Ineisis objects are based on that, such as "Shared/Obj/Door", "Shared/Obj/Static", etc.
07-01-2013 12:46 PM
Find all posts by this user Quote this message in a reply
jagatai Offline
Member

Post: #3
RE: Shared\Obj\Obj
(07-01-2013 12:46 PM)Esenthel Wrote:  This func is first defined in Ineisis: "Shared/Obj/Obj" file, "Obj" class (please don't confuse this class with "EE.Game.Obj" as they're 2 different classes)

All Ineisis objects are based on that, such as "Shared/Obj/Door", "Shared/Obj/Static", etc.

Understood and thanks, im just curious as to why LogN("Test"); never shows even though create() is called?

-J
07-01-2013 06:22 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #4
RE: Shared\Obj\Obj
Hi,

The best way would be to hit F8 to open the project in Visual Studio, and do step by step debugging so you can see what exactly is going on.
07-04-2013 12:11 PM
Find all posts by this user Quote this message in a reply
Post Reply