TModLoader v1.4.4.9
TModLoader source code documentation
Loading...
Searching...
No Matches

◆ SetTilesLoaded()

void Terraria.WorldSections.SetTilesLoaded ( int startX,
int startY,
int endXInclusive,
int endYInclusive )
inline

Definition at line 209 of file WorldSections.cs.

210 {
211 int sectionX3 = Netplay.GetSectionX(startX);
212 int sectionY = Netplay.GetSectionY(startY);
213 int sectionX2 = Netplay.GetSectionX(endXInclusive);
214 int sectionY2 = Netplay.GetSectionY(endYInclusive);
215 for (int i = sectionX3; i <= sectionX2; i++)
216 {
217 for (int j = sectionY; j <= sectionY2; j++)
218 {
220 }
221 }
222 }
void SetSectionLoaded(int x, int y)

References Terraria.Netplay.GetSectionX(), Terraria.Netplay.GetSectionY(), and Terraria.WorldSections.SetSectionLoaded().

+ Here is the call graph for this function: