-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpluginmain.cpp
More file actions
37 lines (25 loc) · 1.24 KB
/
pluginmain.cpp
File metadata and controls
37 lines (25 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**********************************************************************
Copyright (C) 2015, 2017 by West Leitrim Software.
All Rights Reserved.
This source code and software provided under the terms of the
Mozilla Public License Version 2.0 (MPL) a copy of which is
provided with it.
Without limitation or modification of the license, note that
key terms of the license are approximately:
(1) free to use for personal and commercial purposes
(2) you must publish source to any derivative you distribute
(3) there is ABSOLUTELY NO WARRANTY
**********************************************************************/
#include "dzplugin.h"
#include "dzapp.h"
#include "version.h"
#include "anivisaction.h"
DZ_PLUGIN_DEFINITION( "AniVis - Animate Node Visiblity" );
DZ_PLUGIN_AUTHOR( "West Leitrim Software" );
DZ_PLUGIN_VERSION( ANAVIS_MAJOR, ANAVIS_MINOR, ANAVIS_REV, ANAVIS_BUILD );
DZ_PLUGIN_DESCRIPTION( QString(
"<a href=\"%1/AniVis/index.htm\">Documentation</a><br><br>"
"This plugin fills a hole in use of the DAZ Studio timeline "
"by making it possible to animate the visibility of a node. "
).arg( dzApp->getDocumentationPath() ) );
DZ_PLUGIN_CLASS_GUID( DzAniVisAction, 309CD52D-FC6E-4434-A60E-FC99EFB44080 );