I have a clutter texture as my background . I need to put some clutter actors over it. is it possible to do it . Since i get the following error:
"invalid cast from `ClutterTexture' to `ClutterContainer' "
Can any one help me ?
|
feedback
|
|
ClutterTexture is not a container, i.e. it cannot contain other actors. ClutterBox and ClutterGroup are containers available in Clutter; ClutterBox allows using different layout managers - like ClutterBinLayout: http://developer.gnome.org/clutter/stable/ClutterBinLayout.html or ClutterFixedLayout: http://developer.gnome.org/clutter/stable/ClutterFixedLayout.html you can also use ClutterGroup, and use constraints to maintain a layout: http://developer.gnome.org/clutter/stable/ClutterConstraint.html | |||
|
feedback
|
|
It has been a while since I have used clutter but I will try to provide some insights. As the error says you cannot cast | |||||||||
feedback
|