mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
show parameter list
This commit is contained in:
parent
95209b9d9a
commit
7f3641ed49
@ -144,4 +144,13 @@ clear_receiver() {
|
|||||||
void Event::
|
void Event::
|
||||||
output(ostream &out) const {
|
output(ostream &out) const {
|
||||||
out << get_name();
|
out << get_name();
|
||||||
|
|
||||||
|
out << "(";
|
||||||
|
for (ParameterList::const_iterator pi = _parameters.begin(); pi != _parameters.end(); ++pi) {
|
||||||
|
if (pi != _parameters.begin()) {
|
||||||
|
out << ", ";
|
||||||
|
}
|
||||||
|
out << (*pi);
|
||||||
|
}
|
||||||
|
out << ")";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user