i want to do a mod with it, but i really cant find the file that its responsible for the blood on the marine screen when he dies, and i cant find the file that changes the blood ''puff'' when a marine is hit too
Soul_RiderMod BeanJoin Date: 2004-06-19Member: 29388Members, Constellation, Squad Five Blue
The death screen is just the black screen with the kill info on it. What you want are DeathEffects. Do a find in files on deatheffects and you will be directed to a line in player client with a function called:
local function TriggerFirstPersonDeathEffects(self)
local cinematic = Client.CreateCinematic(RenderScene.Zone_ViewModel)
cinematic:SetCinematic(self:GetFirstPersonDeathEffect())
end
Begin there and follow the trail to the information you want.
McGlaspiewww.team156.comJoin Date: 2010-07-26Member: 73044Members, Super Administrators, Forum Admins, NS2 Developer, NS2 Playtester, Squad Five Blue, Squad Five Silver, Squad Five Gold, Reinforced - Onos, WC 2013 - Gold, Subnautica Playtester
Those files will be referenced in the material(s) used for that effect. I've stumbled across them before so I know they're in there. Couldn't tell you where off hand though.
Comments
Begin there and follow the trail to the information you want.