{
  "exported_at": 1778616763.932896,
  "folders": [],
  "format": "exprizo.saved",
  "items": [
    {
      "created_at": 1778616466.422076,
      "description": "Animates the Center X position from a start value to an end value using an ease-in-out cubic curve\nStarts slowly, accelerates in the middle, then slows down before stopping\nThe Y position stays fixed at 0.5\n\nControls you can change:\n\n30 \u2192 animation duration in frames\nExample: 30 ends at frame 30\n120 ends at frame 120\n0.5 \u2192 starting X position\n0.9 \u2192 movement distance\nFinal position = start value + distance\nExample: 0.5 + 0.9 = 1.4 final X position\nTo change the final position directly:\ndistance = end value \u2212 start value\nThe easing section controls the motion feel:\nease-in-out cubic = smooth cinematic acceleration and deceleration",
      "expression": "{\n    0.5 + (\n        (math.min(math.max(time / 30, 0), 1) < 0.5)\n        and 4 * math.pow(math.min(math.max(time / 30, 0), 1), 3)\n        or 1 - math.pow(-2 * math.min(math.max(time / 30, 0), 1) + 2, 3) / 2\n    ) * 0.9,\n    0.5\n}",
      "folder": "",
      "id": "68f39a3749894e938d78a863930049b3",
      "name": "X Position Eased In Out Animation",
      "updated_at": 1778616466.422076
    }
  ],
  "version": 1
}
