forked from panda3d/panda3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimBundleNode.I
More file actions
49 lines (45 loc) · 1.05 KB
/
animBundleNode.I
File metadata and controls
49 lines (45 loc) · 1.05 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
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file animBundleNode.I
* @author drose
* @date 2002-03-06
*/
/**
* The AnimBundle and its node should be constructed together. Generally, the
* derived classes of AnimBundleNode will automatically create a AnimBundle of
* the appropriate type, and pass it up to this constructor.
*/
INLINE AnimBundleNode::
AnimBundleNode(const std::string &name, AnimBundle *bundle) :
PandaNode(name),
_bundle(bundle)
{
}
/**
* For internal use only.
*/
INLINE AnimBundleNode::
AnimBundleNode() : PandaNode("") {
}
/**
* Use make_copy() or copy_subgraph() to copy one of these.
*/
INLINE AnimBundleNode::
AnimBundleNode(const AnimBundleNode ©) :
PandaNode(copy),
_bundle(copy._bundle)
{
}
/**
*
*/
INLINE AnimBundle *AnimBundleNode::
get_bundle() const {
return _bundle;
}