-added kinematic body
-added kinematic body demos
This commit is contained in:
parent
b62ec387f3
commit
7ca29bfaa7
42 changed files with 1171 additions and 559 deletions
|
|
@ -530,6 +530,17 @@ void DocData::generate(bool p_basic_types) {
|
|||
|
||||
}
|
||||
|
||||
List<Pair<String,Variant> > cinfo;
|
||||
lang->get_public_constants(&cinfo);
|
||||
|
||||
|
||||
for(List<Pair<String,Variant> >::Element *E=cinfo.front();E;E=E->next()) {
|
||||
|
||||
ConstantDoc cd;
|
||||
cd.name=E->get().first;
|
||||
cd.value=E->get().second;
|
||||
c.constants.push_back(cd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue