Zitat von
Corpsman:
Ich habe es mit
Delphi-Quellcode:
Function Combine(box1, Box2: Pnewtonbody): PNewtonCollision;
Var
Arr: Array[0..1] Of pNewtonbody;
Begin
Arr[0] := Box1;
Arr[1] := Box2;
Result := newtoncreateCompoundCollision(newtonworld, 2, @arr);
End;
Probiert aber es geschieht nichts.
mach mal
Delphi-Quellcode:
Function Combine(box1, Box2: Pnewtonbody): PNewtonCollision;
Var
Arr: Array[0..1] Of pNewtonbody;
Begin
Arr[0] := Box1;
Arr[1] := Box2;
Result := NewtonCreateCompoundCollision(newtonworld, 1, @Arr);
End;
und bind newtonwrap.cpp oder newtonwrap.h in den Code ein.
Danach stellst du bei den Projektoptionen ein, dass er C++-Code erzeugen soll.
PS: is nicht gegoogelt
ist von
hier!