Updated Fancade Text Code Format.md (markdown)
commited
commit
525753a423e235cb7f9c497d08dc2f7c1206fc7c
... | ... | @@ -29,7 +29,7 @@ Basic Math Operators |
29 | 29 | |
30 | 30 | Control |
31 | 31 | |
32 | ## _ |
|
32 | ## _____________________________
|
|
33 | 33 | ***if*** |
34 | 34 | ``` |
35 | 35 | • If (condition) { function } else { function } ; |
... | ... | @@ -43,7 +43,7 @@ Control |
43 | 43 | |
44 | 44 | |
45 | 45 | |
46 | ## _ |
|
46 | ## _____________________________
|
|
47 | 47 | ***Loop*** |
48 | 48 | ``` |
49 | 49 | • Loop[ start , end ]( ) |
... | ... | @@ -55,14 +55,16 @@ Control |
55 | 55 | While (start < end) { start++ , function } ; |
56 | 56 | /*this is loop in a nutshell :D , joke this is the manual loop*/ |
57 | 57 | ``` |
58 | Touch Sensor |
|
58 | ## _____________________________ |
|
59 | ***Touch Sensor*** |
|
60 | ``` |
|
59 | 61 | • Touch[ mode , touch ]( ) |
60 | 62 | { function ; return ( x , y ) ; } ; |
61 | ||
62 | Collision |
|
63 | • Collide[ Obj ]( ) |
|
63 | ``` |
|
64 | ***Collision*** |
|
65 |
```• Collide[ Obj ]( ) |
|
64 | 66 | { function ; return ( Impulse , Normal , Hit Obj ) ; } ; |
65 | ||
67 | ``` |
|
66 | 68 | Swipe |
67 | 69 | • Swipe( ) { function ; return ( x , y , z ) ; } ; |
68 | 70 |