Exemplo n.º 1
0
 public BuildStie(IslandPathingProfile nProfile)
 {
     blocksToBuild = new Dictionary <BlockLoc, byte>();
     profile       = nProfile;
 }
Exemplo n.º 2
0
 public IntVector3 toISIntVec3(IslandPathingProfile profile)
 {
     return(new IntVector3(ISX(profile), ISY(profile), ISZ(profile)));
 }
Exemplo n.º 3
0
 public int ISZ(IslandPathingProfile profile)
 {
     return(profile.getIslandSpaceLocationZ(worldSpaceZ));
 }
Exemplo n.º 4
0
 public int ISY(IslandPathingProfile profile)
 {
     return(profile.getIslandSpaceLocationY(worldSpaceY));
 }
Exemplo n.º 5
0
 public int ISX(IslandPathingProfile profile)
 {
     return(profile.getIslandSpaceLocationX(worldSpaceX));
 }
Exemplo n.º 6
0
 public BoatBuildSite(BlockLoc newObjectLoc, IslandPathingProfile nProfile)
 {
     objectLoc = newObjectLoc;
     profile   = nProfile;
 }