@brief 获取音效
| 677 | |
| 678 | /// @brief 获取音效 |
| 679 | fcyRefPointer<ResSound> GetSound(const char* name)LNOEXCEPT |
| 680 | { |
| 681 | auto i = m_SoundSpritePool.find(name); |
| 682 | if (i == m_SoundSpritePool.end()) |
| 683 | return nullptr; |
| 684 | else |
| 685 | return i->second; |
| 686 | } |
| 687 | |
| 688 | /// @brief 获取粒子系统 |
| 689 | fcyRefPointer<ResParticle> GetParticle(const char* name)LNOEXCEPT |