Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.image.Image?>
  6. <?import javafx.scene.image.ImageView?>
  7. <?import javafx.scene.layout.AnchorPane?>
  8. <?import javafx.scene.shape.Rectangle?>
  9. <?import javafx.scene.text.Font?>
  10.  
  11. <AnchorPane prefHeight="540.0" prefWidth="900.0" style="-fx-background-color: black;" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ee.taltech.iti0202.gui.InstructionWindow">
  12. <children>
  13. <ImageView fitHeight="542.0" fitWidth="608.0" layoutX="-28.0" pickOnBounds="true">
  14. <image>
  15. <Image url="@Images/backstone.png" />
  16. </image>
  17. </ImageView>
  18. <ImageView fitHeight="542.0" fitWidth="608.0" layoutX="482.0" pickOnBounds="true">
  19. <image>
  20. <Image url="@Images/backstone.png" />
  21. </image>
  22. </ImageView>
  23. <Rectangle arcHeight="5.0" arcWidth="5.0" fill="#0088ff00" height="447.0" layoutX="222.0" layoutY="55.0" stroke="WHITE" strokeType="INSIDE" strokeWidth="3.0" width="447.0" />
  24. <Label layoutX="379.0" layoutY="82.0" text="Instruction" textFill="#fffefe">
  25. <font>
  26. <Font name="Harrington" size="28.0" />
  27. </font>
  28. </Label>
  29. <Label layoutX="250.0" layoutY="151.0" text="Your task is to protect the tower." textFill="WHITE">
  30. <font>
  31. <Font name="Harrington" size="20.0" />
  32. </font>
  33. </Label>
  34. <Label layoutX="542.0" layoutY="151.0" text="There are 10" textFill="#fffefe">
  35. <font>
  36. <Font name="Harrington" size="20.0" />
  37. </font>
  38. </Label>
  39. <Label layoutX="237.0" layoutY="197.0" text="waves of monsters. Waves include 3 types of" textFill="#fffefe">
  40. <font>
  41. <Font name="Harrington" size="20.0" />
  42. </font>
  43. </Label>
  44. <Label layoutX="240.0" layoutY="245.0" text="monsters. They are orc, skeleton and gold man." textFill="#fffefe">
  45. <font>
  46. <Font name="Harrington" size="20.0" />
  47. </font>
  48. </Label>
  49. <Label layoutX="237.0" layoutY="286.0" text="Each of them has different amounf of HP." textFill="#fffefe">
  50. <font>
  51. <Font name="Harrington" size="20.0" />
  52. </font>
  53. </Label>
  54. <Label layoutX="605.0" layoutY="285.0" text="To" textFill="#fffefe">
  55. <font>
  56. <Font name="Harrington" size="20.0" />
  57. </font>
  58. </Label>
  59. <Label layoutX="240.0" layoutY="330.0" text="kill orc will be enough 2 cliks, for skeleton 3 and" textFill="#fffefe">
  60. <font>
  61. <Font name="Harrington" size="20.0" />
  62. </font>
  63. </Label>
  64. <Label layoutX="237.0" layoutY="372.0" text="for gold man only 1 click. After all waves game " textFill="#fffefe">
  65. <font>
  66. <Font name="Harrington" size="20.0" />
  67. </font>
  68. </Label>
  69. <Label layoutX="237.0" layoutY="423.0" text="is over. Good luck!" textFill="#fffefe">
  70. <font>
  71. <Font name="Harrington" size="20.0" />
  72. </font>
  73. </Label>
  74. <ImageView fitHeight="163.0" fitWidth="162.0" layoutX="577.0" layoutY="-42.0" pickOnBounds="true" preserveRatio="true">
  75. <image>
  76. <Image url="@Images/torch.png" />
  77. </image>
  78. </ImageView>
  79. <ImageView fitHeight="163.0" fitWidth="162.0" layoutX="143.0" layoutY="-39.0" nodeOrientation="RIGHT_TO_LEFT" pickOnBounds="true" preserveRatio="true">
  80. <image>
  81. <Image url="@Images/torch.png" />
  82. </image>
  83. </ImageView>
  84. <Button fx:id="menubutton" layoutX="767.0" layoutY="476.0" mnemonicParsing="false" text="back to menu" />
  85. </children>
  86. </AnchorPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement