DragonShaolin:I learn how to use shader with digital tutors. But in the tutorial they use a pipeline for skinned animation from the xna tutorial "SkinningSample". But I have problems by converting this tutorial in GS 3.0. I got the error message "Unrecognize project. No adapter available"
Thanks for the report of this error message. Sorry for the inconvenience. We are in the process of updating this sample and it will be available soon for XNA Game Studio 3.1.
In the meantime, you can fix the problem yourself if you wish by making a change to the SkinnedModelWindows.csproj file, located in the sample's SkinnedModel directory:
Near the end of the file, after this line:
| <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
add the following (on one line):
| <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\v2.0\Microsoft.Xna.GameStudio.Common.targets" /> |
(Note, this line can also be copied from the SkinnedModelXbox.csproj file, found in the same directory.)
After adding this line, you should be able to successfully upgrade this sample to version 3.0.