Jump to content

Recommended Posts

I tried to make the boomerang like item, but it was invisible when thrown in the air (for it I used this as reference as I thought I could fix the problem that it had but in the end i couldnt

)but after that I decided to make it from zero but I dont know for what files I need to look for.

If you could help me either find the problem with the invisible boomerang from my first attempt or tell me where and what to look for to make it for myself, i would be really grateful!

here in vibraniumshield.lua

local assets={    
Asset("ANIM", "anim/vibraniumshield.zip"),    
Asset("ANIM", "anim/swap_vibraniumshield.zip"),    

Asset("ATLAS", "images/inventoryimages/vibraniumshield.xml"),    
Asset("IMAGE", "images/inventoryimages/vibraniumshield.tex"),
}

it miss the spin_loop.zip, should be
 

local assets={    
Asset("ANIM", "anim/vibraniumshield.zip"),    
Asset("ANIM", "anim/swap_vibraniumshield.zip"),   
Asset("ANIM", "anim/spin_loop.zip"),   

Asset("ATLAS", "images/inventoryimages/vibraniumshield.xml"),    
Asset("IMAGE", "images/inventoryimages/vibraniumshield.tex"),
}

 

  • Sanity 1

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...