def On_Airdrop(self, Vector3): What is the way to take the location where it will fall ?? . Thanks!
salva Friendly self-taught developer Administrator Jan 31, 2016 577 613 63 Mar 5, 2017 #1 def On_Airdrop(self, Vector3): What is the way to take the location where it will fall ?? . Thanks!
DreTaX Probably knows the answer... Administrator Jun 29, 2014 4,096 4,836 113 At your house. github.com Mar 5, 2017 #2 salva said: def On_Airdrop(self, Vector3): What is the way to take the location where it will fall ?? . Thanks! Click to expand... Vector3?
salva said: def On_Airdrop(self, Vector3): What is the way to take the location where it will fall ?? . Thanks! Click to expand... Vector3?
salva Friendly self-taught developer Administrator Jan 31, 2016 577 613 63 Mar 5, 2017 #3 Okay, I know how to do it, thank you anyway Code: def On_Airdrop(self, Vector3): loc = Util.CreateVector2(Vector3.x, Vector3.z) pos = str(Vector3) Server.BroadcastFrom("Airdrop", " "+ pos) Reactions: Jakkee
Okay, I know how to do it, thank you anyway Code: def On_Airdrop(self, Vector3): loc = Util.CreateVector2(Vector3.x, Vector3.z) pos = str(Vector3) Server.BroadcastFrom("Airdrop", " "+ pos)