I want something to happen when an object touches a certain imagepoint on another object. How do I achieve this?
It depends if the object that touches the imagepoint of the other is square. If it's square you could use distance, otherwise you have to distinguish between height and width.
In this example if the green rectangle overlaps the purple one on the upper left (Imagepoint1) you get an overlap.
https://drive.google.com/file/d/0B5FlDY ... sp=sharing
Please feel free to ask is something unclear.
Hi AwesomePuppy! You can use System condition "Overlapping Point" :
Object = (object1);
X = Object2.ImagePointX(ID_of_image_point);
Y = Object2.ImagePointY(ID_of_image_point);
And you're done.
Develop games in your browser. Powerful, performant & highly capable.
Letting C2 do the math and the stuff:
https://www.dropbox.com/s/penjf5xt5q2gf ... .capx?dl=0
Edit: Above solution in practice.
Here's the code i'm using: file:///C:/Edit%20screen.PNG
What's wrong with it? (Also, I want the same thing to happen if I touch any of several imagepoints)
That is a local file URL, we cant see it. ^^
Okay then, here's the dropbox: dropbox.com/s/0zuj5xlpgplnm ... .capx?dl=0
Same questions as in my last post.