MyMotivation customer privacy notice This privacy notice tells you what to expect us to do with your personal information. Contact details Email m.consulting.apps@gmail.com What information we collect, use, and why We collect or use the following information for the operation of customer accounts and guarantees: Information used for security purposes We collect or use the following information for service updates or marketing purposes: Location data
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
Show hidden characters
{ | |
"rulesDirectory": [ | |
"node_modules/tslint-eslint-rules/dist/rules" | |
], | |
"rules": { | |
"arrow-return-shorthand": true, | |
"callable-types": true, | |
"class-name": true, | |
"comment-format": [ | |
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
[ | |
{ | |
"runner": "mocha", | |
"config": { | |
"reporter": "dot" | |
}, | |
"duration": { | |
"d": 0, | |
"h": 0, | |
"m": 0, |
This file has been truncated, but you can view the full file.
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
[ | |
{ | |
"runner": "mocha", | |
"config": { | |
"reporter": "dot" | |
}, | |
"duration": { | |
"d": 0, | |
"h": 0, | |
"m": 0, |
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
import { expect } from "chai"; | |
import { FileTwo } from "./FileTwo"; | |
describe("File Two: More Complex mutations here", () => { | |
let two: FileTwo; | |
beforeEach(() => { | |
two = new FileTwo(); | |
}); |
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
import { expect } from "chai"; | |
import { FileTwo } from "./FileTwo"; | |
describe("File Two: More Complex mutations here", () => { | |
let two: FileTwo; | |
beforeEach(() => { | |
two = new FileTwo(); | |
}); |
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; | |
public class ObjectPooler : MonoBehaviour { | |
//Object pooling Class code adapted from | |
//https://www.youtube.com/watch?v=ijSRJ3yrawQ&list=PLiyfvmtjWC_XmdYfXm2i1AQ3lKrEPgc9-&index=6 | |
public GameObject pooledObject; | |
public int poolSize; |
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; | |
public class PlatformGenerator : MonoBehaviour { | |
public Transform generationPoint; | |
public float distanceBetweenPlatforms; | |
//private float platformWidth; |