Search found 525 matches

by Lukas
Today, 09:23
Forum: Feature & Improvement requests
Topic: "Layers" Light Table mode
Replies: 20
Views: 18793

Re: "Layers" Light Table mode

Wouldn't it make much more sense to add OOP functionality to layers instead of the adding a layers mode to the LT?
by Lukas
Today, 05:23
Forum: Feature & Improvement requests
Topic: Please remove the default auto-naming during Export
Replies: 6
Views: 9730

Re: Please remove the default auto-naming during Export

The path TVPaint suggest has always driven me nuts too. My custom panel has a render button that fixes this problem for me. You have to follow my naming conventions though. But it saves a lot of time because it will always render the shot the the location you expect and overwrites it. Jpg en png onl...
by Lukas
12 Apr 2024, 14:30
Forum: Contents Sharing
Topic: Lukas Sketch Panel
Replies: 5
Views: 972

Re: Lukas Sketch Panel

I optimised the XML export. It took over 4 minutes on a 60+ shots storyboard and now render under a minute. Turns out rendering individual frames take a lot more time than simply rendering sequences, so now it just renders each frame of a hold anyway. The XML only adds the first frame of the hold th...
by Lukas
12 Apr 2024, 13:25
Forum: Technical Support
Topic: Bug: Hidden clips cross+greyed out thumb sometimes dissapear on mouseover
Replies: 0
Views: 202

Bug: Hidden clips cross+greyed out thumb sometimes dissapear on mouseover

When you 'Hide' a clip. It gets a cross and gets greyed out. This is very useful. There's a bug that makes the feature a bit problematic though: However, when you hover over the clip, the cross and grey overlay often disappear. Sometimes they re-appear on mouse-over, but dissapear again when the mou...
by Lukas
11 Apr 2024, 13:27
Forum: George scripting
Topic: Can George check if we're in Project or Clip: Timeline tab?
Replies: 7
Views: 1041

Re: Can George check if we're in Project or Clip: Timeline tab?

[...] Create a shortcut that toggles between Project / Clip: Timeline tabs [...] Well at least I got this to work. ScriptName = "toggle_project_clip_view" tv_ReadUserString ScriptName "State" "clip" State = result IF CMP(State, "clip") State = "project&q...
by Lukas
11 Apr 2024, 11:57
Forum: George scripting
Topic: Can I get the name of a Colorgroup with George?
Replies: 2
Views: 186

Can I get the name of a Colorgroup with George?

Can I get the name of a Colorgroup with George?

Thanks in advance :)
by Lukas
10 Apr 2024, 14:49
Forum: Technical Support
Topic: Export clips to TVP projects
Replies: 10
Views: 905

Re: Export clips to TVP projects

I reworked it a little bit for our pipeline. My version is in my panel: https://github.com/lukaskrepel/TVP-Lukas-Sketch-Panel make sure you update to the latest version. Read the Suggested folder structure for projects part of the readme if you're interested in using it too. There's a "Clips to...
by Lukas
03 Apr 2024, 09:59
Forum: Technical Support
Topic: Bug: Layer selection visual indicator doesn't update after selecting with shift
Replies: 1
Views: 195

Bug: Layer selection visual indicator doesn't update after selecting with shift

Layer selection often shows selection wrong. Steps to reproduce: 1. Create a project with 5 layers 2. Make sure you have no layers selected (of course the current layer will be highlighted, this doesn't matter) 2. Hold Shift and click the thumbnail of the top layer to select it 3. Keep holding Shift...
by Lukas
02 Apr 2024, 12:54
Forum: Contents Sharing
Topic: OTANO Storyboard Tools
Replies: 20
Views: 43355

Re: OTANO Storyboard Tools

Interesting. We mainly use the export to XML for storyboarding, so I decided to never overwrite images to make sure edits don't break. It's not a big deal to add shots later, as they will always be new image files. I understand the need to overwrite though! Good luck with that. I'll be looking forwa...
by Lukas
02 Apr 2024, 10:54
Forum: Technical Support
Topic: TVPaint Animation 11.7.3 is available!
Replies: 32
Views: 3449

Re: TVPaint Animation 11.7.3 is available!

I'm on an old 2018 Macbook Pro :)
by Lukas
02 Apr 2024, 09:13
Forum: George scripting
Topic: Trying to write a script to insert some text on layer
Replies: 13
Views: 1302

Re: Trying to write a script to insert some text on layer

You're welcome :) Yeah for stamp mode I remember that on my out of peg script I needed to store it separately and restore it separately with a specific command Would you mind sharing the code of storing and restoring the stamp mode? I couldn't find the script you mentioned. My brushes with 'Alpha St...
by Lukas
02 Apr 2024, 08:17
Forum: George scripting
Topic: Can George check if we're in Project or Clip: Timeline tab?
Replies: 7
Views: 1041

Re: Can George check if we're in Project or Clip: Timeline tab?

Yeah I understand. Actually even standard TVPaint functions sometimes do something different depending on the tab. For example, the default shortcut for down arrow: "Layer: Go Down": Behaviour in Clip: Timeline: Go to next layer Behaviour in Project view: Go to next clip I recently discove...
by Lukas
02 Apr 2024, 07:12
Forum: George scripting
Topic: global variables?
Replies: 6
Views: 877

Re: global variables?

NathanOtano wrote: 01 Apr 2024, 13:53 You can also store variables "per project" which can come handy :) https://wiki.tvpaint.com/index.php/Tv_W ... jectString

Also, you can write/read text anywhere in the clip dialogue/notes textboxes, project infos, and you can write text files with george
Ah, good to know. Thanks!