This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class FontBlender( Font ): # Pictogrammers Material Design Icons | |
| font_name = 'Blender Icons' | |
| font_abbr = 'BLENDER' | |
| font_data_prefix = '.icon-' | |
| font_data = 'C:/Users/lilithgames.LLS-20240418CQX/Downloads/icomoon (1)/style.css' | |
| ttfs = [[ font_abbr, 'icomoon.ttf', 'C:/Users/lilithgames.LLS-20240418CQX/Downloads/icomoon (1)/fonts/icomoon.ttf' ]] | |
| @classmethod | |
| def get_icons( cls, input_data ): | |
| icons_data = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HRESULT LoadFromSDKMesh( | |
| const wchar_t* szFilename, | |
| std::unique_ptr<Mesh>& inMesh, | |
| std::vector<Mesh::Material>& inMaterial, | |
| bool ccw, | |
| bool dds) | |
| { | |
| HRESULT hr = S_OK; | |
| std::wstring StrPathW(szFilename); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <type_traits> | |
| template <typename T> | |
| std::true_type test_is_class_or_union(int T::*); | |
| template <typename T> | |
| std::false_type test_is_class_or_union(...); | |
| template <typename T> |