>-Info-
# Settings:
#
# position=(x y), point on screen, or (x% y%), dynamic position on screen, or (xc yc), x/y center, or any combination of the three. (0% aligns to left of screen, 100% aligns to right)
# image="Image Name", name of image in extras folder minus .png
# create_tween="Tween Name", name of tween defined in tweens.txt.
# destroy_tween="Tween Name", name of tween defined in tweens.txt.
# (Following are all optional)
# scale.width="default" (no scale) or "fit contents" (fits contents) or 100 (pixels) or 100% (% of screen width). Omission is same as "default"
# scale.height="default" (no scale) or "fit contents" (fits contents) or 100 (pixels) or 100% (% of screen height). Omission is same as "default"
# scale.part="whole" (stretch the whole image) or "inside" (leave frames unstretched). This option unnecessary if not scaled.
# scale.type="stretch" (image is stretched), "tile" (image is tiled). This option unnecessary if not scaled.
# scale.cornerDimension=(w h), for "inside" scale part, this defines the border area of the image. Unnecessary if not using "inside" scale.
# scale.contentPadding=(w h), for "fit to contents" scale, this increases window size an addition (w h)

>Default Main
position=(0 380)
image="Default Window"
create_tween=Default
destroy_tween=Default
scale.width=640
scale.height=100
scale.part=inside
scale.type=stretch
scale.cornerDimension=(4 4)

>Default Floating
position=(0 0)
image="Default Window"
create_tween=Default
destroy_tween=Default
scale.width="fit contents"
scale.height="fit contents"
scale.part=inside
scale.type=stretch
scale.cornerDimension=(4 4)
scale.contentPadding=(18 18)