- Create a Node2D.
- Attach AStart2DVisualizer.gd to it.
- Somewhere in your code pass your AStar2D instance to its .visualize(astar) method, i.e.:
get_node(path_to_your_visualizer_node).visualize(astar)
- Then run your game and you should see something like this:
This file contains 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
Tocá los billetes para ponerle un freno al dólar: | |
💸💸💸💸 |
This file contains 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
:) |
This file contains 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
#! /usr/bin/env ruby | |
# | |
# check-umbraco-lastsyncedids.rb | |
# | |
# DESCRIPTION: | |
# Checks several Umbraco lastsynced.txt and compares their contents. | |
# Will trigger a CRIT or WARN if their difference is beyond thresholds. | |
# | |
# OUTPUT: | |
# plain text |
- Reset Audio Mixer.
- Stop IISExpress.
- Stop McAffee Scan.
- Expose IIS Express.
OpenSpritz changed its name to Glance-Bookmarklet, and the old bookmarklet stopped working because of this. You can solve this issue following these steps.
- Go to http://miserlou.github.io/Glance-Bookmarklet/
- Drag the "OpenSpritz this!" button (the leftmost one) to your bookmarks bar.
- Edit the newly created bookmark, modify its URL to:
This file contains 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
package; | |
import PlayState; | |
import flixel.interfaces.IFlxDestroyable; | |
import flixel.util.FlxDestroyUtil; | |
import flixel.util.FlxPool; | |
import flixel.util.FlxSignal; | |
/** | |
* A generic FSM State implementation. Extend this class to create new states. |
This file contains 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
using UnityEngine; | |
static class Glue | |
{ | |
public static AudioManager audio; | |
public static LevelManager level; | |
public static PrefabManager prefabs; | |
public static SocialManager social; | |
public static UIManager ui; |
-
Add the [https://github.com/floatinghotpot/cordova-plugin-nativeaudio](Cordova Native Audio Plugin) to your project:
cordova plugin add cordova-plugin-nativeaudio
-
Include sound-patch.js in your HTML, or just paste the code wherever you want it.
This doesn't support looping or volume. Modify the code to use NativeAudio.preloadComplex
accordingly.
This file contains 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
var express = require('express'); | |
var app = express(); | |
// middleware que obtiene los roles del usuario actual | |
app.use(function (req, res, next){ | |
if(req.query.admin){ | |
req.role = "admin"; |
NewerOlder