12345678910111213141516171819202122232425262728293031323334 |
- # --- Test 42. Use Drawable and Control. --- #
- import nodesnim
- Window("drawable oops")
- build:
- - Scene scene:
- - Control ctrl
- - Control ctrl1:
- call move(350, 100)
- call setSizeAnchor(0.2, 0.2)
- ctrl1.background.setTexture(load("assets/sharp.jpg"))
- ctrl1.background.setCornerRadius(25)
- ctrl1.background.setCornerDetail(25)
- ctrl.resize(256, 96)
- ctrl.move(64, 64)
- ctrl.setStyle(style(
- {
- background-color: rgb(33, 65, 87),
- border-radius: 8,
- border-width: 1,
- border-color: rgb(0, 0, 0),
- shadow: true,
- shadow-offset: 3,
- size-anchor: 0.5 0.7
- }
- ))
- addMainScene(scene)
- windowLaunch()
|