Closed beantowel closed 3 years ago
Install the package from nuget: https://www.nuget.org/packages/PhysX.Net/3.0.0-alpha1
I can only guess the reason you're receiving The type or namespace name 'Sample' could not be found...
is that you'll need to be using .NET 5 (or above). .NET Core and Framework won't work.
Also make sure the nuget packages have successfully restored inside VS and the PhysX.Net reference assembly is there
Engine is just the common functionality used by the Sample, it's not needed to use PhysX.Net itself The required files are outlined in the README.md file If you wanted to modify the code you'd want to fork this repo and go from there
using System;
, what's the namespace we should use? Or is it supposed to modify samples to use the package (btw, omnisharp in vscode reports "The type or namespace name 'Sample' could not be found (are you missing a using directive or an assembly reference?) [EventsSample]csharp(CS0246)"), the build system seems broken.