Blender Python 02 - Keyframes

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.ย. 2024
  • How to add keyframes in Blender using Python.
    Animations can be automated this way.

ความคิดเห็น • 12

  • @justanaquarius320
    @justanaquarius320 4 ปีที่แล้ว +2

    really nice! exactly what i need, thanks you very much bro :D

  • @matrat57
    @matrat57 3 ปีที่แล้ว +1

    perfect thanks a lot!

  • @akira7ink
    @akira7ink 5 ปีที่แล้ว

    How can I select an object with Python? It just ignores the "Cube" or "Sphere" and sets the keyframe for the selected object in the outliner :/

  • @samdavepollard
    @samdavepollard 5 ปีที่แล้ว

    Helped me a lot. Many Thanks.

  • @bizarro20daves
    @bizarro20daves 4 ปีที่แล้ว

    Awesome, thanks!

  • @Mayzaf14
    @Mayzaf14 6 ปีที่แล้ว +2

    Thanks, sir!! It really helped!

  • @mrberry43
    @mrberry43 6 ปีที่แล้ว +1

    Thank You.

  • @betojasz
    @betojasz 6 ปีที่แล้ว

    Worked well for me !! Thanx a lot!! When I try to run this on a Blender Game, nothing happens, do you know why? Thanx again!!

  • @miguelclown
    @miguelclown 8 ปีที่แล้ว

    Hi
    I tried the tutorial in blender 2.74 but it didn't work
    when i wrote the script for moviment and run the script it says: Python script fail, look in the console for now...
    here is the script:
    import bpy
    # Frame 1
    bpy.data.objects['Cube'].Keyframe_insert(data_path='location', frame=1)
    # Frame 125
    #bpy.ops.transform.translate(value=(0,0,5))
    bpy.data.objects['Cube'].Keyframe_insert (data_path='location', frame=125)
    # Frame 250
    #bpy.ops.transform.translate(value=(0,0,-5))
    bpy.data.objects['Cube'].Keyframe_insert (data_path='location', frame=250)

    • @benverret7968
      @benverret7968  8 ปีที่แล้ว

      You wrote Keyframe_insert instead of keyframe_insert.

  • @tastybrains
    @tastybrains 5 ปีที่แล้ว

    just what i was looking for. thanks!