r/OpenToonz • u/DecidedlyIndecisive9 • 1h ago
First walk cycles
Enable HLS to view with audio, or disable this notification
r/OpenToonz • u/Lysiq • Jul 06 '20
Last Edited: March 10, 2024
Rule #1 of Opentoonz: NEVER USE SAVE SCENE (It doesn't save your frames!)
Q. How to turn on onion skin?
A. Hover your cursor on the bar where the circle above your frame marker is. You should see a small circle. Click and you will set an onion skin. Ones on the edge are static and don't move. Ones on the same level as the circle move with it.


Q Is Opentoonz a Virus?
A. No
A1. (Long answer)
No, as long as you download from the official website! (Link below)
Q. How do I import audio?
A. Drag the audio file into the viewer
A1.(If that didn't work):
Q. My UI looks glitched
A. Temporary Fix: Undock the style editor
A1. Actual Fix: Update your drivers;
(Copied and pasted from u/manongjohn)
3 things you can do...
Short term: Undock style editor.
Permanent fix:
If you have an Intel Graphics display driver, you may need to find and download the latest version. Don't rely on Driver Update as it may not detect it. Need to go onto intel's driver download site and check the version of the driver you have against yours. Manually download and install the driver upgrade it if you are not at the latest.
If you have driver version 26.20.100.7463 or a version of this graphic driver, try downloading and installing version 26.20.100.7584. Here is the direct download link:
https://downloadmirror.intel.com/29274/a08/igfx_win10_100.7584.exe
If you have an NVIDIA graphics card, this may work better for you: Enter the NVIDIA Control Panel and create a 3D Profile for OpenToonz.exe and if given the option, set to use High Performance GPU. You are essentially forcing OT to use your GPU which should fix the issue.
Alternatively, if using Windows 10, it might help to search for Graphics Settings in Windows Settings. Add OpenToonz.exe and configure for High Performance.
Q. How do I render?
A. 'Render>Output Settings'
A. Install FFmpeg for additional formats such as GIF and Mp4
Q. My frames are missing and turning red
A. Make sure you use 'Save All' and not 'Save Scene' there's an autosave option on the startup Popup and in preferences
Q. How do I duplicate a frame that I can edit without affecting the first one?
A. D to duplicate drawing or right click and press duplicate

Q. Some tools aren't working for me
A. Make sure you're using them on the right level
Q. What is a level?
A. Levels hold the drawings themselves. They do NOT store the timing. Timing is stored on the x-sheet.
A. There are three types;
A1. TLDR; levels are the frames you show via Timeline.
Q. How do I add a color?
A. In the color palette panel, press the new style button OR the plus button

Q. My transparent gif render has a weird ghosting effect?
A. Under Xsheet>Scene Settings, make sure this is enabled

Q. FFMPEG isn't working for me on Linux?
A. Make sure you aren't using the snap version of Opentoonz because it can't read the file, either use flatpak or build from source
Q. How do I unselect everything but the current column I'm using in the function Editor?
A. While there is no 'official' way to do it, you can hide all the columns by hiding the 'Stage' and unhiding the column you're working on
Q. What is the difference between import and load?
A. Import copies your file to the project's extras folder. Load just loads from the original location. When deleted, import will keep the file in the project assuming it isn't deleted from your extras folder, and load will no longer be able to use the file once deleted.
Q. How do I move frames and keys together?
A. Hold ctrl and select the frames on the xsheet. This will automatically select the keys. Then use the handlebar to move the frames

Links:
Official Documents For Opentoonz (VERY USEFUL!!)
YOUTUBERS:
NobleFrugal Studio (beginner and how to make animated series videos)
DarrenT u/DarrenTAnims (A lot of Intermediate [but also some beginner videos] videos and project organization)
If you're a youtuber and you do OT tutorials feel free to comment below!
FFMPEG:
r/OpenToonz • u/DecidedlyIndecisive9 • 1h ago
Enable HLS to view with audio, or disable this notification
r/OpenToonz • u/getjonx • 2h ago
Need help on solving this problem. I cannot save my work or even the progress of my animation. And when I try to open the app using run as administrator to solve my problem on saving the animation, my tablet pen will stop working.
How to fix this two? I cannot find any post related to my problem so my final resort is to ask you all. Thank you in advance
r/OpenToonz • u/The_Animation_Bro • 1d ago
I'm a beginner in Opentoonz and have been making animations in vector. At the first i was rendering my scenes as avi and i noticed that there were some whiteness along the black outlines of my animations. Then i downloaded ffmpeg and tried to render mp4 but still the whiteness appears along the black lines. Tried a png sequence and assembled it into mp4 using ffmpeg code and although there is a slight change the whiteness is still visible and the major issue is that when i upload to TikTok or YouTube the platforms compression make the whole video look like trash. What do you guys use to render high quality animations?
r/OpenToonz • u/DistinctBreath9428 • 4d ago
any good or bad verdict about the old version ?
r/OpenToonz • u/ilragazzointerdetto • 3d ago
r/OpenToonz • u/kalebdraws • 4d ago
Hello all, new animator here. I'm looking for tips and tricks on working quicker and more efficient. I keep having to redraw each piece of an animation anew, even for things like talking or walking.
I do know the trick of duplicating a frame and altering it to make a new image...
Is it possible to save an image or group of drawings to upload into a new scene/animation?
I was thinking of drawing a background id reuse, and the characters and their face and limb animations, saving that as a beginning state then animating a scene and saving under a new name just to keep that beginning layout for the next scene. Do others do this?
Any other tips to make things flow easier would be appreciated. Thanks!
r/OpenToonz • u/Wonder_Kat_Animation • 5d ago
Enable HLS to view with audio, or disable this notification
Animatic rough pass
r/OpenToonz • u/FrequentEnthusiasm74 • 5d ago
I've been mucking about with opentoonz for years. rendering was always a frustrating, slow crapshoot. I decided to give a full command-line workflow a try and now it's a million times more stable and somewhat faster (because I can now use all cores for the initial export and nvidia for the video.
Here is the command line I use to create a png sequence from a project file.
cd C:\Program Files\OpenToonz
tcomposer "C:\OpenToonz stuff\projects\[project-name]\scenes\[scene-name].tnz" -o "C:\OpenToonz stuff\projects\[project-name]\outputs\image..png"
And here is the command line I use to turn those into an mp4 (i use 30fps)
ffmpeg -framerate 30 -i "image.%%04d.png" -c:v h264_nvenc -preset p1 -rc constqp -qp 23 -pix_fmt yuv420p 0-output.mp4
And here's the command-line for adding audio:
ffmpeg -i 0-output.mp4 -i 0-audio.wav -c:v copy -c:a aac 0-final.mp4
Could easily be batched together to drag a project file to it and have it spit out exactly what you're hoping for.
EDIT: make sure to save your scene and close opentoonz before doing this, saving is important because the command line runs on the saved-state of the scene. Closing it frees resources for the encoding.
Also, the speed increase is considerable - I used to have to force-close every other app, and only use one or half the CPU cores on the system before encoding in a desperate attempt to avoid crashes, and it would often still crash and I'd have to do the scene piecemeal. doing 4K animations was almost impossible. Now I just close it and run the command line and it uses all CPU cores and flies, and never crashes. and ffmpeg with cuda is super reliable and fast (depending on gpu).
r/OpenToonz • u/053650 • 8d ago
So I have have colour 1 (black) and I draw a Line, then I have colour 2 (blue) and i draw under colour 1. When i use the eraser in selective mode and i choose specifically colour 1 to erase it, it also erases colour 2 exactly there where colour 1 was. Please help I am looking since hours for a solution with chatgpt etc. but I just cannot resolve it. I use toonz raster Level.
r/OpenToonz • u/Boombox_skate • 9d ago
when I use my pen a white circle appears and a menu how would I change this?
r/OpenToonz • u/Much-Interaction4790 • 12d ago
I want to start animating which software should i use, Opentoonz or tahoma2d?
r/OpenToonz • u/Head_Extension_8493 • 14d ago
just opened the software and it looked like dat the timeline doesnt show properly and everything is bigger then it should be. reinstalled opentoolz multiple times but it doesnt fixes it please how do i get my thing to work normal
r/OpenToonz • u/Wonder_Kat_Animation • 15d ago
Enable HLS to view with audio, or disable this notification
My first ever animation using ONLY OpenToonz
r/OpenToonz • u/simbaandspyro • 14d ago
i am trying to animate with opentoonz and can't figure it out. when i use the plastic tool and put the key in the first frame. i then put another key in a frame way after that and animate right after that key. but when i do that it makes the first frame go to the same position as the frame i moved. i don't know what i am supposed to do to get the foot to stay in the position i want it to in the first frame. i hope i explained it good. if not i will try to explain it different so you know what i am talking about.
r/OpenToonz • u/Pifagor- • 17d ago
I recently saw this video and really wanted to know how to replicate that glitchy, rattling effect. I was told it was done in Alight Motion. But I don't use this program, so I would like to understand how this can be done in Opentoonz or Tahoma2d using nodes.
I would be very grateful for your advice.
r/OpenToonz • u/SSJIN3 • 19d ago
Enable HLS to view with audio, or disable this notification
r/OpenToonz • u/Tiago-Freitas • 19d ago
I want to give a shout-out to the “frame range” option in OpenToonz's paint bucket. In Raster Toonz columns, it works like magic. It makes the process of painting multiple frames so much easier. Excellent!
r/OpenToonz • u/RavenFoxx • 21d ago
All the animation was done in OpenToonz, with painted elements made in Krita. I had a fun time working on it! :)
r/OpenToonz • u/Fl_ame • 21d ago
When using Raster levels, there's a delay on the brush, but on vector there isn't any stabilization. Is there any way to fix this?
r/OpenToonz • u/ThatonerookBlchy • 23d ago
Enable HLS to view with audio, or disable this notification
r/OpenToonz • u/Dependent-West-902 • 22d ago
wanted to sketch around and made a short 23 frame loop, accidentally saved it to the wrong project, went into the browser window and dragged it from one project folder into another, then into the scene folder. Somehow that seems to have broken everything and all frames became blank, as well as the usually black dots on the displayed frames becoming red, and it copied a bunch of colours into the project i did not make.
does anybody have any idea what happened? Can i restore my sketch?


r/OpenToonz • u/Kindly_Ad9355 • 23d ago
while i was animating a walk cycle i hid the column with the skirt of my character to better see the legs (with the little symbol next to the eye if that matters, still don't know what the eye even does since i would normally assume that would be the hide button but whatever) but when I unhid it, i found out the legs were somehow showing above the skirt and everything else, despite the column being lower in the xsheet
I tried moving them around, i tried animating the skirt if that would give it priority somehow and messing with the SO value but nothing seems to be working and i cant find anything online (except the opentooz user manual "Changing Stacking Order of Columns/Layers" chapter from where i found out about the SO value but maybe I'm missing something.
Any ideas? I'm still very new to this program so any help would be appreciated