Remove more public Setter/Getter APIs from Dali::Actor
[platform/core/uifw/dali-demo.git] / examples / rendering-skybox / look-camera.cpp
index 8e74743..36240ad 100644 (file)
@@ -112,7 +112,7 @@ bool LookCamera::OnTick()
   Quaternion rotY( Degree( mCameraYawPitch.y), Vector3( 0.0f, 1.0f, 0.0f ) );
   rotation = ( rotY * rotX );
 
-  mCameraActor.SetOrientation( rotation );
+  mCameraActor.SetProperty( Actor::Property::ORIENTATION, rotation );
 
   return true;
 }