Another change

This commit is contained in:
Bill 2022-11-09 18:00:05 -05:00
parent d8741a75b0
commit 52befcdd7c
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import { ConfigurationEvent, HabboWebTools, LegacyExternalInterface, Nitro, NitroCommunicationDemoEvent, NitroConfiguration, NitroEvent, NitroLocalizationEvent, NitroVersion, RoomEngineEvent, WebGL } from '@nitrots/nitro-renderer';
import { ConfigurationEvent, GetAssetManager, HabboWebTools, LegacyExternalInterface, Nitro, NitroCommunicationDemoEvent, NitroConfiguration, NitroEvent, NitroLocalizationEvent, NitroVersion, RoomEngineEvent, WebGL } from '@nitrots/nitro-renderer';
import { FC, useCallback, useEffect, useState } from 'react';
import { DispatchUiEvent, GetCommunication, GetConfiguration, GetNitroInstance, GetUIVersion } from './api';
import { Base, TransitionAnimation, TransitionAnimationTypes } from './common';
@ -88,7 +88,7 @@ export const App: FC<{}> = props =>
if(assetUrls && assetUrls.length) for(const url of assetUrls) urls.push(NitroConfiguration.interpolate(url));
GetNitroInstance().core.asset.downloadAssets(urls, (status: boolean) =>
GetAssetManager().downloadAssets(urls, (status: boolean) =>
{
if(status)
{

View File

@ -1 +1 @@
export type OverflowType = 'auto' | 'hidden' | 'visible' | 'scroll' | 'unset';
export type OverflowType = 'auto' | 'hidden' | 'visible' | 'scroll' | 'y-scroll' | 'unset';