Difference between revisions of "User:PigeonGuru/Sandbox"
PigeonGuru (talk | contribs) |
PigeonGuru (talk | contribs) |
||
Line 14: | Line 14: | ||
<!-- <div style="background:gold">[[File:LongRangeMineralScanner.png|25px]]<span style="color:navy">[[User:Yoshida Keiji|'''Yoshida Keiji''']]</span>([[User_talk:Yoshida_Keiji|Let's talk]][[File:beer b.png|25px]])[[File:LongRangeMineralScanner.png|25px]]</div> --> | <!-- <div style="background:gold">[[File:LongRangeMineralScanner.png|25px]]<span style="color:navy">[[User:Yoshida Keiji|'''Yoshida Keiji''']]</span>([[User_talk:Yoshida_Keiji|Let's talk]][[File:beer b.png|25px]])[[File:LongRangeMineralScanner.png|25px]]</div> --> | ||
− | + | === image cropping flavor text === | |
+ | |||
+ | *did you hear about darth croppuis the wise? | ||
+ | *oof ow my borders | ||
+ | *did you know that cropping images appropriately reduces size and user annoyance by more than 50%? | ||
+ | *image- cropped (some random player) | ||
=== datamined === | === datamined === |
Revision as of 08:54, 11 October 2017
template
http://rimworldwiki.com/index.php?title=Template:Nav/guides
save file
C:\Users\%username%\AppData\LocalLow\Ludeon Studios\RimWorld by Ludeon Studios\Saves
°C
image cropping flavor text
- did you hear about darth croppuis the wise?
- oof ow my borders
- did you know that cropping images appropriately reduces size and user annoyance by more than 50%?
- image- cropped (some random player)
datamined
namespace RimWorld.Planet { public static class CaravanTicksPerMoveUtility { private const int DownedPawnMoveTicks = 450;
public const float CellToTilesConversionRatio = 190f;
public const int DefaultTicksPerMove = 2500;
public static int GetTicksPerMove(Caravan caravan) { if (caravan == null) { return 2500; } return CaravanTicksPerMoveUtility.GetTicksPerMove(caravan.PawnsListForReading); }
public static int GetTicksPerMove(List<Pawn> pawns) { if (pawns.Any<Pawn>()) { float num = 0f; for (int i = 0; i < pawns.Count; i++) { int num2 = (!pawns[i].Downed) ? pawns[i].TicksPerMoveCardinal : 450; num += (float)num2 / (float)pawns.Count; } num *= 190f; return Mathf.Max(Mathf.RoundToInt(num), 1); } return 2500; } } }