Jump to content

Gingerbread house gingerbread_house3.zip and gingerbread_house4.zip anim.bin file missing


CossonWool
  • Closed

The 2 anim files gingerbread_house3.zip and gingerbread_house4.zip are missing anim.bin files. This causes houses using those animations to be invisible.


Edit: I should have checked if this had already been reported. There's a couple bug reports mentioning invisible gingerbread houses already, so this should be deleted or marked as a duplicate.


Steps to Reproduce
To spawn a house: c_spawn("gingerbreadhouse"). To set it to anim 1 (working anim): local ent = c_findnext("gingerbreadhouse") ent.AnimState:SetBank ("gingerbread_house1") ent.AnimState:SetBuild("gingerbread_house1"). To set it to anim 3 (broken anim): local ent = c_findnext("gingerbreadhouse") ent.AnimState:SetBank ("gingerbread_house3") ent.AnimState:SetBuild("gingerbread_house3")



User Feedback


Are you a newbie?

local animdata = {
    { build = "gingerbread_house1", bank = "gingerbread_house1" },
    { build = "gingerbread_house3", bank = "gingerbread_house2" },
    { build = "gingerbread_house2", bank = "gingerbread_house2" },
    { build = "gingerbread_house4", bank = "gingerbread_house1" },
}

  • Like 1

Share this comment


Link to comment
Share on other sites



Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...