mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-28 13:10:20 +02:00
Slight changes to tutorial
This commit is contained in:
parent
4814f277c1
commit
a1ae13489e
1 changed files with 33 additions and 3 deletions
|
@ -66,12 +66,26 @@ Rectangle {
|
||||||
}
|
}
|
||||||
RalewayRegular {
|
RalewayRegular {
|
||||||
id: introText1;
|
id: introText1;
|
||||||
text: "<font size='2'>INTRODUCTION TO</font><br>My Purchases";
|
text: "INTRODUCTION TO";
|
||||||
|
// Text size
|
||||||
|
size: 15;
|
||||||
|
// Anchors
|
||||||
|
anchors.top: marketplaceHeaderImage.bottom;
|
||||||
|
anchors.topMargin: 8;
|
||||||
|
anchors.left: parent.left;
|
||||||
|
anchors.leftMargin: 12;
|
||||||
|
anchors.right: parent.right;
|
||||||
|
height: paintedHeight;
|
||||||
|
// Style
|
||||||
|
color: hifi.colors.white;
|
||||||
|
}
|
||||||
|
RalewayRegular {
|
||||||
|
id: introText2;
|
||||||
|
text: "My Purchases";
|
||||||
// Text size
|
// Text size
|
||||||
size: 28;
|
size: 28;
|
||||||
// Anchors
|
// Anchors
|
||||||
anchors.top: marketplaceHeaderImage.bottom;
|
anchors.top: introText1.bottom;
|
||||||
anchors.topMargin: -8;
|
|
||||||
anchors.left: parent.left;
|
anchors.left: parent.left;
|
||||||
anchors.leftMargin: 12;
|
anchors.leftMargin: 12;
|
||||||
anchors.right: parent.right;
|
anchors.right: parent.right;
|
||||||
|
@ -123,6 +137,22 @@ Rectangle {
|
||||||
root.activeView++;
|
root.activeView++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// "SKIP" button
|
||||||
|
HifiControlsUit.Button {
|
||||||
|
color: hifi.buttons.noneBorderlessGray;
|
||||||
|
colorScheme: hifi.colorSchemes.dark;
|
||||||
|
anchors.bottom: parent.bottom;
|
||||||
|
anchors.bottomMargin: 32;
|
||||||
|
anchors.right: parent.right;
|
||||||
|
anchors.rightMargin: 16;
|
||||||
|
width: 150;
|
||||||
|
height: 40;
|
||||||
|
text: "SKIP";
|
||||||
|
onClicked: {
|
||||||
|
sendSignalToParent({method: 'tutorial_finished'});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// "STEP 1" END
|
// "STEP 1" END
|
||||||
|
|
Loading…
Reference in a new issue