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

◆ DoGrappleAndInteractShareTheSameKey

bool Terraria.GameInput.KeyConfiguration.DoGrappleAndInteractShareTheSameKey
get

Definition at line 10 of file KeyConfiguration.cs.

11 {
12 get
13 {
14 if (KeyStatus["Grapple"].Count > 0 && KeyStatus["MouseRight"].Count > 0)
15 {
16 return KeyStatus["MouseRight"].Contains(KeyStatus["Grapple"][0]);
17 }
18 return false;
19 }
20 }
bool ICollection< KeyValuePair< TKey, TValue > >. Contains(KeyValuePair< TKey, TValue > keyValuePair)
Dictionary< string, List< string > > KeyStatus