Files
XCEngine/docs/api/resources/audioclip/destructor.md
ssdfasd 750ac95951 docs: update README.md and fix components module docs
- Update README.md project structure docs/api section
  - Add missing audio/, components/, scene/ directories
  - Reorder alphabetically
- Update Components test count from 2+ to 3
- Expand documentation section with module listings
- Remove incomplete audio-source and audio-listener component docs
  from components.md (referenced 30+ and 16+ non-existent method docs)
2026-03-22 13:28:14 +08:00

441 B

AudioClip::~AudioClip

virtual ~AudioClip() override

销毁 AudioClip 实例并释放相关资源。

线程安全: (不应在多线程中同时访问正在销毁的对象)

示例:

#include "Resources/AudioClip.h"

using namespace XCEngine::Resources;

{
    AudioClip clip;
    clip.SetAudioFormat(AudioFormat::WAV);
}

相关文档