From 4cd4cec306d85a0578977fa356e4d156ab7cc4a5 Mon Sep 17 00:00:00 2001 From: Richard Huang Date: Fri, 17 Feb 2017 13:57:51 +0000 Subject: [PATCH] Add C# properties for actor current position and size Change-Id: I842a8dfeababd4bb9d7ae1df12eb1ab8e9633320 --- plugins/dali-swig/SWIG/events/actor-event.i | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/plugins/dali-swig/SWIG/events/actor-event.i b/plugins/dali-swig/SWIG/events/actor-event.i index 138120a..93b5c15 100755 --- a/plugins/dali-swig/SWIG/events/actor-event.i +++ b/plugins/dali-swig/SWIG/events/actor-event.i @@ -37,6 +37,22 @@ return (IntPtr)swigCPtr; } + public Position CurrentPosition + { + get + { + return GetCurrentPosition(); + } + } + + public Size3D CurrentSize + { + get + { + return GetCurrentSize(); + } + } + public Actor Parent { get -- 2.7.4