How to change angles?

I’m trying to change the animation agles acording to where my “fireball” is flying, but i’m recieving the following error:

Library.lua:232: attempt to index field 'angleTable' (a number value) stack traceback:         [C]: ? Library.lua:232: in function '\_listener'

what i’ve tried:

burn[index]=CBE.VentGroup{ { preset="burn", ...   physics={    relativeToSize=false,    sizeX=-0.01,    sizeY=-0.01,    PreCalculate=true,    autoAngle=false,    angles={90},    velocity=3,    xDamping=1,    gravityY=-0.00,    gravityX=0.00    } } }... burn[index]:get("burn").velAngles={180}

You’ve got preCalculate as PreCalculate (with an upper-case ‘P’)

See if that helps :slight_smile:

  • C

So close :slight_smile: thanks 

You’ve got preCalculate as PreCalculate (with an upper-case ‘P’)

See if that helps :slight_smile:

  • C

So close :slight_smile: thanks