jen Project Pipeline - A journey within a journey / by Jose Espinosa

Hello! Sorry i havent posted in a while, things have been pretty busy as of my last blog post. But! Updates! Between then and now, i started a new job in Vancouver as a Senior Rigger and so far it has been a blast!

Anyways to start, with the content of this blog post… a little backstory. I wrote a story for an animated short film im working on in my free time. It has been a long process and theres still lots to do, our team is very small so i have to do a lot of work and develop a lot of stuff to get this short to completion. Hopefully when this project is done, it can begin my journey as a director. (One can hope) Ive had experience running projects in the past, mainly in the areas of organization, pipeline stuff, task management and overall running the a project from start to finish, so im bringing that knowledge for this personal project.

While we started working on this project and the pre production began, i started thinking ahead, since im mostly used to that thinking, i was trying to anticipate any problems we could face during production, one of those problems is the management of assets across the artists. There are many tools out there that can make this easier, like Artella, or Shotgun or any other project management software/asset management. Because one option was, to transfer the info between us via Dropbox or g drive or things like that, but its too much hassle. So i began to think, what if i make like, something like Artella but, by myself? Since Python is pretty much compatible with a LOT of stuff. I started doing my research.

I stumbled upon FTP servers, and what do you know, theres a whole python module for FTP servers. So I mixed that with some python and some Maya commands and i started to develop what i named… jenProjectPipeline. A tool that, in the course of this project, will facilitate the use of assets, props, characters, rigs, textures and animations of the whole short film. This tool is still in development of course, i believe i have done a lot of work on it in the past few months, so i think ive made good progress and ive made some successful test runs.

Here im gonna start breaking down my logistics with the UI, maybe in future blog posts i can go a bit in detail on parts of the code.

jenPM_1.JPG

Here, we can see what i have so far in the UI, we can see the different sections in tabs for modeling, rigging and animation. So now ill explain how it works.

jenPM_2.JPG

Here in the section labeled as number 1 in red, is a text list of all the files/items in the server that are under assets. As you can imagine, each type of model, rig an animation tab has the same server list layout in the UI. The purpose of this section is so that the user can see the list of all the available assets(in this case) that are currently in the FTP server. It also tells them what is the latest file currently in the FTP as well, for example in this image. We can see that the Tree asset is still in its first version, versus the Cliff asset is already in its third version. But with that list alone, we cannot handle those files to be worked on. Therefore, below the list, theres a progress bar with a download button. What this does is, when you select the asset you want to work on, you can hit the download to pull that file from the FTP server and store it locally on your computer. Once its fully downloaded, it will appear in the UI as a usable/editable asset.

That takes us to the area labeled number 2 in blue. That area is an icon text button layout that will display all the files you currently have locally with an icon representing them visually. It will also tell you what version you currently have locally. That way, if you are a version behind, you can download from the FTP and get the latest, but still storing the previous versions if you want to roll back. Having those assets locally in the right side opens us up to other options in the UI, marked below as number 3 in green.

These buttons below will allow us to manage what we want to do with the asset we selected in the number 2 area where the local files are stored. Starting with the green buttons, we can do a normal save, its just like a CTRL + S. Then we have Save Version, which is just that, version saving for your working backups. And with the publish button, what this does is that, it saves the official file, as a published file or published asset, and stores it locally, making the UI update on the right, but also, it triggers a python FTP code to upload that published asset back to the FTP server so that other users may see it and download it as well. This is going to be huge and very handy when handling the model deliveries, like, they can just tell me, i finished this character and i published it, and now i know i can just open this tool, download said character and start working on it. Since all of my small team is working remotely, this is going to be crucial to maintain a good synchronization during production.

The orange buttons, Open is just opening the selected file, Open Version is if you want to open any backup versions you saved with the Save Version button and the Open publish version is the same thing, but with the published files.

And finally in blue, we got the referencing, pretty straightforward, Reference its just that, it takes the latest asset selected and does a reference. Update Reference checks your scene for the asset selected in area number 2, and checks if its already referenced and it prompts you if you want to update that selected asset to the latest, or if you want to choose to what remap that asset. And finally, Reference publish version is if you want to bring a new reference that you can look for from the publish files.

I feel it pretty straight forward, im really excited how its working and how it has turned out, in the tests ive made, one of the team members actually uploaded that Cliff asset and i successfully downloaded it on my pc via the tool.

This is a pretty cool start for this tool and i bet its going to be very helpful in this project. Im going to continue developing it, and i will do my best to keep this blog update with the development of the tool and i will talk more in depth about certain areas of the tool as well. Maybe i will also do tech blogs talking about the rigging progress for the main character as well, well see!

Thanks for reading!