123456789101112131415161718192021222324252627282930313233343536 |
- # --- 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(8)
- ctrl1.background.enableShadow(true)
- ctrl1.background.setShadowOffset(Vector2(0, 8))
- 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: 8,
- size-anchor: 0.5 0.7
- }
- ))
- addMainScene(scene)
- windowLaunch()
|