Drawing and Animation
Drawing and Animation Components" typically refer to software libraries or frameworks that provide tools and functionalities for creating graphical content, illustrations, and animations in applications. These components are essential for developers who want to enhance the visual appeal and interactivity of their software.
About the component
- Last Update 25 Oct, 2023
- Component Version : 2.0.0
- API 21, Android 5.0 Lollipop
- 29 Blocks Available
The Ball component is a round sprite that can be placed on a Canvas, where it can react to touches and drags, interact with other sprites (ImageSprite and other Ball components), and move according to its property values.
Overview
Events
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | other | Sprite |
Event handler called when a %type% is dragged. On all calls, the starting coordinates are where the screen was first touched, and the "current" coordinates describe the endpoint of the current line segment. On the first call within a given drag, the "previous" coordinates are the same as the starting coordinates; subsequently, they are the "current" coordinates from the prior call.
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | startX | float | |
2 | startY | float | |
3 | prevX | float | |
4 | prevY | float | |
5 | currentX | float | |
6 | currentY | float |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | edge | number |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | x | float | |
2 | y | float | |
3 | speed | float | |
4 | heading | float | |
5 | xvel | float | |
6 | yvel | float |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | other | Sprite |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | x | float | |
2 | y | float |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | x | float | 2 | y | float |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | x | float | 2 | y | float |
Methods
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | edge | int |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | other | Sprite |
Moves the %type% back in bounds if part of it extends out of bounds, having no effect otherwise. If the %type% is too wide to fit on the canvas, this aligns its left edge with the left edge of the canvas. If the %type% is too tall to fit on the canvas, this aligns its top edge with the top edge of the canvas.
# | Name | Type(s) | Default Value | 1 | x | number | 2 | y | number |
---|
# | Name | Type(s) | Default Value |
---|
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | x | number | 2 | y | number |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | target | Sprite |
Properties
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | Enabled | boolean | |
2 | Enabled | boolean | True |
Returns the %type%'s heading in degrees above the positive x-axis. Zero degrees is toward the right of the screen; 90 degrees is toward the top of the screen.
The direction in which the %type% is headed. Note that this may be different from the direction the %type% is moving, if its speed is non-zero.
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | Heading | number | |
2 | Heading | number | 0.0 |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | Interval | number | |
2 | Interval | number | 100 |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | PaintColor | Color | |
2 | PaintColor | Color | Black |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | Radius | number | |
2 | Radius | number | 5 |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | Speed | float | |
2 | Speed | float | 0.0 |
Returns The horizontal coordinate of the Ball, increasing as the Ball moves right. If the property OriginAtCenter is true, the coordinate is for the center of the Ball; otherwise, it is for the leftmost point of the Ball.
The horizontal coordinate of the %type%, increasing as the %type% moves to the right. If the property OriginAtCenter is true, the coordinate is for the center of the %type%; otherwise, it is for the leftmost point of the %type%.
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | X | number | |
2 | X | number | 0.0 |
Returns The vertical coordinate of the Ball, increasing as the Ball moves down. If the property OriginAtCenter is true, the coordinate is for the center of the Ball; otherwise, it is for the uppermost point of the Ball.
The vertical coordinate of the %type%, increasing as the %type% moves down. If the property OriginAtCenter is true, the coordinate is for the center of the %type%; otherwise, it is for the uppermost point of the %type%.
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | Y | number | |
2 | Y | number | 0.0 |
# | Name | Type(s) | Default Value |
---|---|---|---|
1 | Z | number | |
2 | Z | number | 1.0 |