FlashHit

Results 113 issues of FlashHit
trafficstars

The detonate function has different params: `Detonate(LinearTransform transform, Vec3 impactNormal, Vec3 origin, float latency, float damageMultiplier, Vec3 externalDamageDirection, float blastAngle)`

it returns `{ { [1] = DataContainer, [2] = Entity }, { [1] = DataContainer, [2] = Entity }, ... }` instead of `{ Entity, Entity, Entity, ... }` and...

https://docs.veniceunleashed.net/vext/ref/client/type/ragdollcomponent/ Would be good to know which ones are only for the local player soldier. Or if it is only for 1st person soldier models then it should also work...

https://docs.veniceunleashed.net/vext/ref/shared/library/resourcemanager/#getsettings Example would be `ResourceManager:GetSettings("GameAnimationSettings")` this would return a `DataContainer|nil`. And when it returns a `DataContainer` you can upcast it to `GameAnimationSettings`. And there should be a list or something...

https://docs.veniceunleashed.net/vext/ref/server/event/player_kitpickup/ description for `newCustomization` `newCustomization` is a `VeniceSoldierCustomizationAsset` which is something like `Gameplay/Kits/USRecon` So I guess this is to tell you which kit you picked up? Assault, Engineer, Support, Recon?

https://docs.veniceunleashed.net/vext/ref/server/hook/player_requestjoin/ Add all possible strings for `joinMode`

https://docs.veniceunleashed.net/vext/ref/client/type/soldierweapon/ Check which are only for the local player and add a description for it. Or fix: https://github.com/EmulatorNexus/VeniceUnleashed/issues/459 But probably not possible

https://docs.veniceunleashed.net/vext/ref/shared/type/lineartransform/#constructor-3 same for Vec2, Vec3, Vec4 & AxisAlignedBox Seems to work like this: ```lua local s_TableForLT = { left = {x = 2.0, y = 3.0, z = 4.0}, up...

There should be a description for what it is. We use it for Bots to move them. It's also related to the `EntryInput`. If you spawn a bot soldier and...

So I guess it should be `Player | nil` for the `player` field, right? https://docs.veniceunleashed.net/vext/ref/client/type/voipemitter/