mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
* OP-5661 - added new menu item to AE extension * OP-5661 - added support for addPlaceholder into extension * OP-5661 - fix broken abstract loader In some cases discover couldn't recognize that base plugin is abstract. Handled properly * OP-5661 - WIP of implementing workfile template builder * OP-5661 - added route to add placeholder * OP-5661 - added route to build workfile * OP-5661 - refactored arguments * OP-5661 - implemented build workfile operation moved from wrong position * OP-5661 - removed wrong base plugin * OP-5661 - implemented update placeholder logic * OP-5661 - fix update placeholder metadata * OP-5661 - added Creator placeholder plugin * OP-5661 - pre_create_data could be passed into Creator This allow to modify `pre_create_data` before automatically creating an instance. (Useful for overridding defaults.) * OP-5661 - implemented populate of Create placeholder * OP-5661 - implemented import of template * OP-5661 - fix to populate correct create placeholder Implemented function to select item(s) by their id. (CreateRender expects selected composition.) * OP-5661 - fix workfile builder schema to multiplatform path Path should be separated by platform. * OP-5661 - implemented adding loaded items instead of placeholders * OP-5661 - add Create Placeholder plugin to dropdown * OP-5661 - add templated workfile to Settings * OP-5661 - fix to choose template file from multiplatform * OP-5661 - added documentation
187 lines
6 KiB
HTML
187 lines
6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" href="css/topcoat-desktop-dark.min.css"/>
|
|
<link id="hostStyle" rel="stylesheet" href="css/styles.css"/>
|
|
|
|
<style type="text/css">
|
|
html, body, iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 0px;
|
|
margin: 0px;
|
|
overflow: hidden;
|
|
}
|
|
button {width: 100%;}
|
|
</style>
|
|
|
|
<style>
|
|
button {width: 100%;}
|
|
body {margin:0; padding:0; height: 100%;}
|
|
html {height: 100%;}
|
|
</style>
|
|
|
|
<title></title>
|
|
<script src="js/libs/jquery-2.0.2.min.js"></script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#workfiles-button").bind("click", function() {
|
|
|
|
RPC.call('AfterEffects.workfiles_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#loader-button").bind("click", function() {
|
|
RPC.call('AfterEffects.loader_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#publish-button").bind("click", function() {
|
|
RPC.call('AfterEffects.publish_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#sceneinventory-button").bind("click", function() {
|
|
RPC.call('AfterEffects.sceneinventory_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#setresolution-button").bind("click", function() {
|
|
RPC.call('AfterEffects.setresolution_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#setframes-button").bind("click", function() {
|
|
RPC.call('AfterEffects.setframes_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#setall-button").bind("click", function() {
|
|
RPC.call('AfterEffects.setall_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#create-placeholder-button").bind("click", function() {
|
|
RPC.call('AfterEffects.create_placeholder_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#update-placeholder-button").bind("click", function() {
|
|
RPC.call('AfterEffects.update_placeholder_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#build-workfile-button").bind("click", function() {
|
|
RPC.call('AfterEffects.build_workfile_template_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type=text/javascript>
|
|
$(function() {
|
|
$("a#experimental-button").bind("click", function() {
|
|
RPC.call('AfterEffects.experimental_tools_route').then(function (data) {
|
|
}, function (error) {
|
|
alert(error);
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
|
|
</head>
|
|
|
|
<body class="hostElt">
|
|
|
|
<div id="content">
|
|
|
|
<div>
|
|
<div></div><a href=# id=workfiles-button><button class="hostFontSize">Workfiles...</button></a></div>
|
|
<div><a href=# id=loader-button><button class="hostFontSize">Load...</button></a></div>
|
|
<div><a href=# id=publish-button><button class="hostFontSize">Publish...</button></a></div>
|
|
<div><a href=# id=sceneinventory-button><button class="hostFontSize">Manage...</button></a></div>
|
|
<div><a href=# id=separator0><button class="hostFontSize"> </button></a></div>
|
|
<div><a href=# id=setresolution-button><button class="hostFontSize">Set Resolution</button></a></div>
|
|
<div><a href=# id=setframes-button><button class="hostFontSize">Set Frame Range</button></a></div>
|
|
<div><a href=# id=setall-button><button class="hostFontSize">Apply All Settings</button></a></div>
|
|
<div><a href=# id=separator1><button class="hostFontSize"> </button></a></div>
|
|
<div><a href=# id=create-placeholder-button><button class="hostFontSize">Create placeholder</button></a></div>
|
|
<div><a href=# id=update-placeholder-button><button class="hostFontSize">Update placeholder</button></a></div>
|
|
<div><a href=# id=build-workfile-button><button class="hostFontSize">Build Workfile from template</button></a></div>
|
|
<div><a href=# id=separator3><button class="hostFontSize"> </button></a></div>
|
|
<div><a href=# id=experimental-button><button class="hostFontSize">Experimental Tools...</button></a></div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- <script src="js/libs/PlayerDebugMode"></script> -->
|
|
<script src="js/libs/wsrpc.js"></script>
|
|
<script src="js/libs/loglevel.min.js"></script>
|
|
<script src="js/libs/CSInterface.js"></script>
|
|
|
|
<script src="js/themeManager.js"></script>
|
|
<script src="js/main.js"></script>
|
|
|
|
|
|
</body>
|
|
</html>
|