| 12345678910111213141516171819202122 |
- import { _decorator, Component, Node, Scene, sys } from 'cc';
- import { aa } from '../aa';
- const { ccclass, property } = _decorator;
- export enum VibrateShortType {
- heavy = "heavy",
- medium = "medium",
- light = "light",
- }
- export class VibratePhone{
- // static type = VibrateShortType
- // static vibrate(x:VibrateShortType){
- // aa.Sdk.vibrateShort({type: x})
- // }
-
- }
|