aboutsummaryrefslogtreecommitdiff
path: root/pmpd3d.c
diff options
context:
space:
mode:
authorCyrille Henry <nusmuk@users.sourceforge.net>2014-01-25 12:55:10 +0000
committerCyrille Henry <nusmuk@users.sourceforge.net>2014-01-25 12:55:10 +0000
commitdc5ab92b54497cf6dd4da80cc908085a72bf0968 (patch)
tree64200f33ba49a9109d00a08e442b171032b69b2c /pmpd3d.c
parentbf90ff81e732920be1c5e3915f53e1575b7dd1a4 (diff)
add delMass and delLink messages ((they are a bit slow for real time use if to much things to destroy, but can still be usefull)
svn path=/trunk/externals/pmpd/; revision=17252
Diffstat (limited to 'pmpd3d.c')
-rw-r--r--pmpd3d.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pmpd3d.c b/pmpd3d.c
index 8c17057..037ba97 100644
--- a/pmpd3d.c
+++ b/pmpd3d.c
@@ -63,7 +63,8 @@ void pmpd3d_setup(void)
class_addmethod(pmpd3d_class, (t_method)pmpd3d_link, gensym("link"), A_GIMME, 0);
class_addmethod(pmpd3d_class, (t_method)pmpd3d_tLink, gensym("tLink"), A_GIMME, 0);
class_addmethod(pmpd3d_class, (t_method)pmpd3d_tabLink, gensym("tabLink"), A_GIMME, 0);
-
+ class_addmethod(pmpd3d_class, (t_method)pmpd3d_delLink, gensym("delLink"), A_GIMME, 0);
+ class_addmethod(pmpd3d_class, (t_method)pmpd3d_delMass, gensym("delMass"), A_GIMME, 0);
/*
pmpd3d_set
--