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
{"music" : [ | |
{ "title" : "Jazz in Paris", | |
"album" : "Jazz & Blues", | |
"artist" : "Media Right Productions", | |
"genre" : "Jazz & Blues", | |
"source" : "Jazz_In_Paris.mp3", | |
"image" : "album_art.jpg", | |
"trackNumber" : 1, | |
"totalTrackCount" : 6, | |
"duration" : 103, |
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
for (int i = 0; i < peoplesScene.Length; i++) | |
{ | |
if (currentPeople <= changePeoples) | |
{ | |
peoplesScene[i].SetActive(true); | |
currentPeople++; | |
if (i % 7 == 0) { | |
peoplesScene[i].GetComponent<Animator>().SetBool("distracted", true); | |
} | |
} |
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 System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using UnityEngine; | |
public class Client : MonoBehaviour { |
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
{ | |
"steamvr" : { | |
"background" : "C:\\Program Files (x86)\\Steam\\steamapps\\common\\SteamVR\\resources\\backgrounds\\viveNight.png", | |
"mirrorViewGeometry" : "547 34 1080 600", | |
"renderTargetMultiplier": 2.5 | |
} | |
} |
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
Ctrl+Shift+(Número) -> deja un marcador | |
Ctrl+(Número) -> Mueve la cámara al marcador |
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
Huawei disables LogCat and any access to the logs of your phone. You should go to a hidden menu where you can enable these functions. | |
Open your Dialer app and enter the following code: *#*#2846579#*#*. | |
Enter the Background Settings page. | |
Click on “Log Settings” | |
Check all 3 options to enable full logging. | |
Ignore the "will affect performance" warning. | |
Reboot the phone. | |
This helped me, hope it will help to you, too. |
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 System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using System; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
public class SocketConnection : MonoBehaviour { |
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 System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
/* https://www.mixamo.com */ | |
public class Drive : MonoBehaviour { | |
float speed = 5.0F; | |
float rotationSpeed = 100.0F; | |
Animator anim; |
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
build.gradle (app) | |
apply plugin: 'com.android.application' | |
apply plugin: 'android-apt' | |
compile 'com.jakewharton:butterknife:8.0.1' | |
apt 'com.jakewharton:butterknife-compiler:8.0.1' | |
build.gradle (project) | |
buildscript { | |
repositories { |
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 sulca.pe.expandenditem; | |
import android.view.View; | |
import android.view.animation.Animation; | |
import android.view.animation.Transformation; | |
/** | |
* Created by William_ST on 30/08/16. | |
*/ | |
public class ResizeAnimation extends Animation { |
NewerOlder