| 1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
|---|---|
| 2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
| 3 | #include "Importer/BsMeshImportOptions.h" |
| 4 | #include "Private/RTTI/BsMeshImportOptionsRTTI.h" |
| 5 | |
| 6 | namespace bs |
| 7 | { |
| 8 | RTTITypeBase* AnimationSplitInfo::getRTTIStatic() |
| 9 | { |
| 10 | return AnimationSplitInfoRTTI::instance(); |
| 11 | } |
| 12 | |
| 13 | RTTITypeBase* AnimationSplitInfo::getRTTI() const |
| 14 | { |
| 15 | return AnimationSplitInfo::getRTTIStatic(); |
| 16 | } |
| 17 | |
| 18 | RTTITypeBase* ImportedAnimationEvents::getRTTIStatic() |
| 19 | { |
| 20 | return ImportedAnimationEventsRTTI::instance(); |
| 21 | } |
| 22 | |
| 23 | RTTITypeBase* ImportedAnimationEvents::getRTTI() const |
| 24 | { |
| 25 | return ImportedAnimationEvents::getRTTIStatic(); |
| 26 | } |
| 27 | |
| 28 | SPtr<MeshImportOptions> MeshImportOptions::create() |
| 29 | { |
| 30 | return bs_shared_ptr_new<MeshImportOptions>(); |
| 31 | } |
| 32 | |
| 33 | RTTITypeBase* MeshImportOptions::getRTTIStatic() |
| 34 | { |
| 35 | return MeshImportOptionsRTTI::instance(); |
| 36 | } |
| 37 | |
| 38 | RTTITypeBase* MeshImportOptions::getRTTI() const |
| 39 | { |
| 40 | return MeshImportOptions::getRTTIStatic(); |
| 41 | } |
| 42 | } |