About Store Forum Documentation Contact



Post Reply 
ineisis source code start failure
Author Message
bond290 Offline
Member

Post: #1
ineisis source code start failure
When I try to run a build it fails and I dont know how to fix it.
03-31-2013 02:48 AM
Find all posts by this user Quote this message in a reply
Dwight Offline
Member

Post: #2
RE: ineisis source code start failure
Neither do we if you don't tell us what is going on exactly.
03-31-2013 02:26 PM
Find all posts by this user Quote this message in a reply
ineffable Offline
Member

Post: #3
RE: ineisis source code start failure
Code:
1>  Player.cpp
1>Source\Player.cpp(222): error C2039: 'hide' : is not a member of 'EE::Mesh'
1>          c:\esenthel\bin\esenthelengine\Mesh/Mesh Mesh.h(18) : see declaration of 'EE::Mesh'
1>Source\Player.cpp(223): error C2039: 'show' : is not a member of 'EE::Mesh'
1>          c:\esenthel\bin\esenthelengine\Mesh/Mesh Mesh.h(18) : see declaration of 'EE::Mesh'

Points at these two lines:

Code:
if(  hide_head)mesh->hide(8"head"); mesh->draw(cskel);
      if(  hide_head)mesh->show(8"head");




Code:
1>Source\Shared\Obj\Torch.cpp(22): error C2039: 'growth_factor' : is not a member of 'EE::Particles'
1>          c:\esenthel\bin\esenthelengine\Graphics/Particle.h(39) : see declaration of 'EE::Particles'

Points at this line:

Code:
particles.growth_factor=2;



Code:
1>  Area.cpp
1>Source\Area.cpp(61): error C2664: 'EE::MeshBase::simplify' : cannot convert parameter 3 from 'float' to 'EE::MeshBase *'

Points to this line:

Code:
mesh.setBase(); MeshBase base; base.createPhys(mesh); mesh.delBase(); base.simplify(0, 0, 0.05);




Obviously commenting out the errors gets around this, but it messes with a few needed things.
(This post was last modified: 04-03-2013 09:24 PM by ineffable.)
04-03-2013 09:10 PM
Find all posts by this user Quote this message in a reply
Dwight Offline
Member

Post: #4
RE: ineisis source code start failure
I would look at the namechanges if I were you smile

e.g Particles.growth_factor->radius_growth
04-03-2013 09:21 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #5
RE: ineisis source code start failure
After you've updated the latest Esenthel Editor version please download latest version of Ineisis sources.
04-03-2013 09:23 PM
Find all posts by this user Quote this message in a reply
ineffable Offline
Member

Post: #6
RE: ineisis source code start failure
Latest Ineisis source:

Code:
1>  Player.cpp
1>Source\Player.cpp(223): error C2065: 'DG_CHR_HEAD' : undeclared identifier


EDIT: Looking at previous code, I assume DG_CHR_HEAD was meant to be declared as an int with the value of 8.
(This post was last modified: 04-03-2013 09:41 PM by ineffable.)
04-03-2013 09:28 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #7
RE: ineisis source code start failure
Please load the entire project.
This is an enum element in the project.
04-03-2013 10:36 PM
Find all posts by this user Quote this message in a reply
Post Reply