Fix compiler errors in UvScrollNode

This commit is contained in:
rdb 2009-07-02 07:15:55 +00:00
parent 09fb58dd08
commit b6ea49d520
2 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ UvScrollNode(const string &name, float u_speed, float v_speed) :
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE UvScrollNode::
INLINE void UvScrollNode::
set_u_speed(float u_speed) {
_u_speed = u_speed;
}
@ -41,7 +41,7 @@ set_u_speed(float u_speed) {
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE UvScrollNode::
INLINE void UvScrollNode::
set_v_speed(float v_speed) {
_v_speed = v_speed;
}

View File

@ -29,14 +29,14 @@ PUBLISHED:
INLINE UvScrollNode(const string &name, float u_speed, float v_speed);
protected:
INLINE UvScrollNode(const ModelNode &copy);
INLINE UvScrollNode(const UvScrollNode &copy);
public:
virtual PandaNode *make_copy() const;
PUBLISHED:
INLINE void set_scroll_u(float u_speed);
INLINE void set_scroll_v(float v_speed);
INLINE void set_u_speed(float u_speed);
INLINE void set_v_speed(float v_speed);
private:
float _u_speed;