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
| figma.showUI(__html__,{width: 250, height: 250}); | |
| // restore previous size | |
| figma.clientStorage.getAsync('size').then(size => { | |
| if(size) figma.ui.resize(size.w,size.h); | |
| }).catch(err=>{}); | |
| figma.ui.onmessage = msg => { | |
| switch (msg.type) { | |
| case "resize": | |
| figma.ui.resize(msg.size.w,msg.size.h); | |
| figma.clientStorage.setAsync('size', msg.size).catch(err=>{});// save size |
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 ViewController: UIViewController,URLSessionDownloadDelegate { | |
| @IBOutlet weak var scnView: SCNView! | |
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| // Do any additional setup after loading the view. | |
| downloadSceneTask() | |
| } | |
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
| // SPDX-License-Identifier: Unlicense | |
| pragma solidity 0.8.10; | |
| contract PRMTVS { | |
| struct Identity { | |
| string name; | |
| string bio; | |
| string email; | |
| string website; | |
| } |
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
| { | |
| "id": "ky1ulqhyeq8mpg3caur", | |
| "name": "NFT Gallery", | |
| "description": "type in your wallet address and see your NFT Gallery in figma", | |
| "color": "pink", | |
| "actions": [ | |
| { | |
| "id": "ky1ur2rcn8zaxo14cg9", | |
| "command": { | |
| "name": "askForInput", |
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
| { | |
| "id": "kyusryaodtnxwdjz49", | |
| "name": "Get / Aspect Ratio", | |
| "description": "", | |
| "color": "blue", | |
| "actions": [ | |
| { | |
| "id": "kyussccta00o7d20od9", | |
| "command": { | |
| "name": "getCurrentSelection", |
OlderNewer