blob: 89c9be62e05b4c5a182d0c6d455d1b29eefb87ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
SmartShape2D - Resources
---
# Shape Materials
Shape materials provide all the texture and collision information needed by the SmartShape nodes.
Once a shape material is defined, it can be easily reused by any number of SmartShape2D nodes.
- Edge Meta Materials
- An array of resources of type SS2D_Material_Edge_Metadata
- Fill Textures / Fill Texture Normals
- Used as the texture for the inside of the polygon for Closed Shapes
- Currently, only the first texture can be used, multiple textures may be supported at a later date
- Fill Texture Z Index
- Each Edge Meta Material has a ZIndex indicating which edges are drawn first
- This sets the ZIndex for the fill texture
- This allows the user to draw the fill texture in front of some edges or behind others
- Fill Mesh Offset
- The Offset of the Fill Mesh
- Can be used to grow / shrink the fill mesh
- Render Offset
- Every edge in the shape will be offset by this amount
- Weld
- Whether or not to weld the last quad of an edge with the first quad of the next edge
# Edge Meta Material
An Edge Meta Material doesn't contain the actual textures used to render an edge like **Edge Material** does.
Instead, this resource contains a single **Edge Material** and describes how and when to render the edge.
- Normal Range
- The angles at which an edge is allowed to be rendered
- Weld
- Whether or not to weld the quads in this edge
- Render
- Whether or not this edge is visible
- Z Index
- Dictates the order in which edges are drawn
- Offset
- Offset of the edge
- Can use a positive or negative value to draw the edges closer or further from the shape
# Normal Range
The Normal Range indicates when a texture should be rendered.
Each shape will compare the Surface Normal of an edge to the Normal Range in each Edge Meta Material.
If the edge's Normal is inside a Meta Material's Normal Range, the Meta Material's Edge Material is rendered.
- A Normal Range is specified in Degrees
- If the normal range is 0 - 360 or 0 - 0, any angle is considered in range and the edge will always render
- Angle "0" is Facing directly Right
- Angle "90" is Facing directly Up
- Angle "180" is Facing directly Left
- Angle "270" is Facing directly Down
# Edge Material
The actual textures used to define an edge
For all cases, using texture normals is completely optional
## Textures / Normals
- The primary textures used for the edge
- At least one texture must be defined
- Example: 
## Taper Textures / Normals
These textures will be used as the first or last quad in an edge.
They're named "Taper Textures" because the purpose is to show the edge "tapering off"
- Textures_Taper_Left is the first quad in an edge
- Example: 
- Textures_Taper_Right is the final quad in an edge
- Example: 
## Corner Textures / Normals
These textures will be used when the edge forms a sharp corner (80 degrees - 100 degrees)
These are used because corners can look warped when using only regular textures
- Texture_Corner_Inner is used when the corner forms an inner corner
- Example: 
- Texture_Corner_Outer is used when the corner forms an outer angle
- Example: 
## Fit Mode
Most likely, the textures you use will not *perfectly* fit the polygon.
This setting allows you to determine how SmartShape will rectify this.
Differt options may look better or worse depending on the art-style.
- Sqush and Stretch
- Texture will be mutated
- Either slightly squished or stretched to fit the polygon
- Crop
- Texture will not be mutated
- Texture will simply be cropped when changing from one texture to the next
|