overte-HifiExperiments/interface/resources/qml/TextOverlayElement.qml
2015-07-16 15:56:01 -07:00

21 lines
477 B
QML

import Hifi 1.0
import QtQuick 2.3
import QtQuick.Controls 1.2
TextOverlayElement {
id: root
Rectangle {
color: root.backgroundColor
anchors.fill: parent
Text {
x: root.leftMargin
y: root.topMargin
id: text
objectName: "textElement"
text: root.text
color: root.textColor
font.family: root.fontFamily
font.pointSize: root.fontSize
}
}
}