Collision not working - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html) +--- Forum: Custom Stories, TCs & Mods (https://www.frictionalgames.com/forum/forum-35.html) +--- Thread: Collision not working (/thread-5758.html) |
Collision not working - nerdboyxxx - 12-16-2010 Hello again, I've set it so that when the Player collides with an Area, it slams open the door and a monster runs past the door. However my Player fails to collide at all with the area and I cannot work out why. The script for the level is below. Code: //========================= If anyone could help me out I would really appreciate it . RE: Collision not working - Luis - 12-16-2010 Bad type for parameter alState, should be an int. Code: void Door_Swing(string &in asParent, string &in asChild, string &in alState) RE: Collision not working - nerdboyxxx - 12-16-2010 (12-16-2010, 10:35 AM)Luis Wrote: Bad type for parameter alState, should be an int. Thank you very much, that fixed up all my problems |