Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
TileMergeAttempt()
[2/5]
static
void
Terraria.WorldGen.TileMergeAttempt
(
int
myType
,
bool
[]
lookfor
,
ref
int
up
,
ref
int
down
,
ref
int
left
,
ref
int
right
)
inline
static
Definition at line
71195
of file
WorldGen.cs
.
71196
{
71197
if
(up > -1 &&
lookfor
[up])
71198
{
71199
up =
myType
;
71200
}
71201
if
(down > -1 &&
lookfor
[down])
71202
{
71203
down =
myType
;
71204
}
71205
if
(left > -1 &&
lookfor
[left])
71206
{
71207
left =
myType
;
71208
}
71209
if
(right > -1 &&
lookfor
[right])
71210
{
71211
right =
myType
;
71212
}
71213
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
Terraria
WorldGen
Generated by
1.10.0