Pixel Perfect Posted September 7, 2012 Share Posted September 7, 2012 I wish to implement my own set of Entity Types when assigning EntityTypes in the editor; as the currently provided ones in the properties system don't meet my requirements. Am I correct in the following assumptions: The properties combo box simply returns an integer representing the entry position of the chosen type which is output as the collision type in the sbx file. The collisions defined in the collisions.lua file are then implemented based on the constants defined in the collision_const.lua file So all I would need to do is redefine the set of Entity Types for the combo box in base1.lua and add my own constants and collision definitions? I assume the Engine implements this in the same way as the Editor. Quote Intel Core i5 2.66 GHz, Asus P7P55D, 8Gb DDR3 RAM, GTX460 1Gb DDR5, Windows 7 (x64), LE Editor, GMax, 3DWS, UU3D Pro, Texture Maker Pro, Shader Map Pro. Development language: C/C++ Link to comment Share on other sites More sharing options...
macklebee Posted September 7, 2012 Share Posted September 7, 2012 base1.lua is from the old multi-state lua arrangement we had initially for a couple of months when LE2.3 first came out. You would want to edit the class.lua script to give all of your entities access to your newly defined collisiontype in the latest version of LE. So edit this line in class.lua to include your new collisiontype (add after 'Trigger'): group:AddProperty( "collisiontype", PROPERTY_CHOICE, "None,Prop,Scene,Character,Trigger,AI,Pixel", "Collision" ) Note: I had to add the 'AI' as well since it was missing in the class.lua file but defined in the following other files... then define the collisiontype in the collision_const.lua file located in the Scripts/constants folder: COLLISION_PIXEL=6 and then edit the collisions.lua file located in the Scipts/start folder as needed to define how your collisiontype reacts in the world: Collisions(COLLISION_PIXEL,COLLISION_PIXEL,1) granted you could add all of this just as hardcode into the specific script for your entity, but this above will give you the ability to add that same collisiontype automatically to any other scripted object you create... Quote Win7 64bit / Intel i7-2600 CPU @ 3.9 GHz / 16 GB DDR3 / NVIDIA GeForce GTX 590 LE / 3DWS / BMX / Hexagon macklebee's channel Link to comment Share on other sites More sharing options...
Pixel Perfect Posted September 7, 2012 Author Share Posted September 7, 2012 Thanks Mack, so it's class.lua. MG had suggested class.lua too. I was going to replace the entire set actually, rather than append to it, unless you know of any reason why I shouldn't. I'm assuming there are no hard coded references to these. It's just my engine already defines a set of Entity Type names and associated values and I'd like to continue with that and have it reflected at level design time within the Editor. So how many of the Lua script files are redundant legacy stuff? Guess I need to sit down and go through all the script structure at some point. Quote Intel Core i5 2.66 GHz, Asus P7P55D, 8Gb DDR3 RAM, GTX460 1Gb DDR5, Windows 7 (x64), LE Editor, GMax, 3DWS, UU3D Pro, Texture Maker Pro, Shader Map Pro. Development language: C/C++ Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.