From aee9bac1a7597ac404797c1ce8717f887fb47376 Mon Sep 17 00:00:00 2001 From: taeyoon Date: Fri, 15 Jan 2016 15:30:14 +0900 Subject: [PATCH] Change property key and value name eg. "renderer-type" to "rendererType" Change-Id: If01a9e6861a7f729ecb1e274edc4e4323166f5be --- util/util-color-image.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/util/util-color-image.cpp b/util/util-color-image.cpp index 696a93d..b5496e8 100755 --- a/util/util-color-image.cpp +++ b/util/util-color-image.cpp @@ -26,8 +26,8 @@ namespace ClusterHome3D Toolkit::ImageView imageView = Toolkit::ImageView::New(); Property::Map solidColorProperty; - solidColorProperty.Insert( "renderer-type", "color-renderer" ); - solidColorProperty.Insert( "blend-color",color); + solidColorProperty.Insert( "rendererType", "colorRenderer" ); + solidColorProperty.Insert( "blendColor",color); imageView.SetProperty( Toolkit::ImageView::Property::IMAGE, solidColorProperty ); return imageView; } @@ -39,8 +39,8 @@ namespace ClusterHome3D imageView.SetParentOrigin(ParentOrigin::CENTER); imageView.SetPosition(0.0f, 0.0f, 0.5f); Property::Map solidColorProperty; - solidColorProperty.Insert( "renderer-type", "color-renderer" ); - solidColorProperty.Insert( "blend-color",Vector4((float)(rand()%10)/10, (float)(rand()%10)/10, (float)(rand()%10)/10, 0.5f)); + solidColorProperty.Insert( "rendererType", "colorRenderer" ); + solidColorProperty.Insert( "blendColor",Vector4((float)(rand()%10)/10, (float)(rand()%10)/10, (float)(rand()%10)/10, 0.5f)); imageView.SetProperty( Toolkit::ImageView::Property::IMAGE, solidColorProperty ); return imageView; } -- 2.7.4