Login

Fancade Wiki

Updated Fancade Text Code Format.md (markdown)

... ...
@@ -38,7 +38,7 @@ Control
38 38
```
39 39
**or**
40 40
```
41
• condition ? function : function ; /* This a secondary method of conditional if in JS language Idk if there are other languages using this method of conditional if */
41
• condition ? function : function ; /* This is a secondary method of conditional if in JS language Idk if there are also other languages that is using this method of conditional if */
42 42
```
43 43
44 44
... ...
@@ -100,37 +100,49 @@ Control
100 100
- Not - (!)
101 101
102 102
### Object
103
103
## _____________________________
104 104
***Set Position***
105
```
105 106
• SetPos( Obj , Position[ ] , Rotation[ ] ) ;
106
107
```
108
## _____________________________
107 109
***Raycast***
110
```
108 111
• Raycast( From[ ] , To[ ] )
109 112
{ return ( Hit , Hit Pos[ ] , Hit Obj ) ; } ;
110
113
```
114
## _____________________________
111 115
***Get Position***
116
```
112 117
• GetPos( ) { return ( Position[ ] , Rotation[ ] ) ; } ;
113
118
```
119
## _____________________________
114 120
***Get Size***
121
```
115 122
• GetSize( ) { return ( max size[ ] , min size[ ] ) ; } ;
116
117
123
```
124
## _____________________________
118 125
***Create Object***
126
```
119 127
• Object.Create( Obj ) ;
120
121
Destroy Object
128
```
129
## _____________________________
130
***Destroy Object***
131
```
122 132
• Object.Destroy( Obj ) ;
123
124
Set Visible
133
```
134
## _____________________________
135
***Set Visible***
136
```
125 137
• Object.Visible( Obj , Visible ) ;
138
```
126 139
127 140
128 141
129 142
130 143
131 144
132
133
Advanced
145
### Advanced
134 146
135 147
List Set Element
136 148
• Num varName[ index ] = 0 ;
Fancade Wiki