コード例 #1
0
        public IndoorMapsApiInternal(IIndoorMapTextureStreamingService textureStreamingService, string indoorMapMaterialDirectory)
        {
            m_handleToSelf = NativeInteropHelpers.AllocateNativeHandleForObject(this);

            IndoorMapTextureStreamingService = textureStreamingService;
            IndoorMapTextureFetcher          = new DefaultIndoorMapTextureFetcher(IndoorMapTextureStreamingService);
            IndoorMapMaterialFactory         = new DefaultIndoorMapMaterialFactory(indoorMapMaterialDirectory);
        }
コード例 #2
0
 public DefaultIndoorMapTextureFetcher(IIndoorMapTextureStreamingService textureStreamingService)
 {
     m_textureStreamingService = textureStreamingService;
 }