Mini App
P00LS Games SDK gives access to a few native features, like haptic feedbacks, if available
Haptic feedbacks
The SDK provides three categories of haptic feedbacks :
- Selection
User selected something inside the game
- Notification
User received a notification
- Impact
A collision occurred
Notification and impact feedbacks can vary in intensity.
Each notification type has its own method:
public void ImpactHapticFeedback(ImpactFeedBackForce force);
public void NotificationHapticFeedback(NotificationFeedBackForce force);
public void SelectHapticFeedback();
Impact
sdk.tma.haptic('impact', 'light'); // style can be one of 'light' | 'medium' | 'heavy' | 'rigid' | 'soft'Notification
sdk.tma.haptic('notification', 'success'); // style can be one of 'error' | 'success' | 'warning'Select
sdk.tma.haptic('select');
Links
Opening URL
In the situation where you would want to use a method like window.open
, given a Mini app is a web view, it won't work as usual. Instead, you can use the openLink
method.
sdk.OpenURL("https://some.url");
sdk.tma.openLink("https://some.url");
Sharing URL
If you need to share a URL using the native UI, you can use the share
method. To share the user's referral link directly, use the shortcut method from Referral doc.
sdk.ShareURL("https://my.url", "optional message");
sdk.tma.share('https://my.url', 'optional message');
Server time
sdk.GetServerTime(date =>
Debug.Log($"Server time: {date.ToString(CultureInfo.InvariantCulture)}")
);
const serverTime = await sdk.tma.getServerTime();
console.log(serverTime.toISOString());
Last modified: 28 November 2024