tzachshabtay / MonoAGS

AGS (Adventure Game Studio) reimagined in Mono
https://tzachshabtay.github.io/MonoAGS/
Artistic License 2.0
27 stars 8 forks source link

Allow having absolute coordinate systems for children #149

Open tzachshabtay opened 7 years ago

tzachshabtay commented 7 years ago

Currently the coordinates of the children is relative to the parent. Allow a way to override this and have the coordinates absolute.

ghost commented 6 years ago

Some engines I've seen have separate "absolute position" property that could be read anytime (does proper conversion from local coordinates if needed).

tzachshabtay commented 6 years ago

What do you mean by "could be read anytime"? I was thinking of adding a boolean value that would tell engine how the position should be interpreted (local or absolute).

ghost commented 6 years ago

What do you mean by "could be read anytime"

I mean, regardless of whether object has parent or not. If it does not have parent it just returns same value as regular position.