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
require ("/lib/OOP/32log") | |
require ("/lib/tiledloader") | |
require ("/lib/lovelytiles/atlas") | |
require ("/lib/lovelytiles/drawstack") | |
require ("/lib/lovelytiles/grid") | |
require ("/lib/lovelytiles/isomap") | |
require ("/lib/lovelytiles/map") | |
require ("/lib/lovelytiles/mapdata") | |
require("/lib/jumper/Jumper") | |
require("/lib/easygui/main") |
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
require("Jumper") | |
require("loveframes") | |
cron = require("cron") | |
require("32log") | |
require("randomlua") | |
tilex = 0 | |
tiley = 0 | |
tilesize = 30 | |
gridsizex = 100 |
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; | |
using System.Collections; | |
public class enemyScore : MonoBehaviour { | |
public static int scoreEnemy = 0; | |
void OnCollisionEnter(Collision collision ){ | |
playerscore.scorePlayer = playerscore.scorePlayer + 1; |
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
ROT = require("/src/rot") | |
require("camera") | |
require("randomlua") | |
cameraX = 0 | |
cameraY = 0 | |
p = false | |
Eupdate = false |
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
# The MIT License (MIT) | |
# Copyright (c) 2014 Lycaon (lycaon.me) | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
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; | |
using System.Collections; | |
/* | |
Copyright (c) 2015 Lycaon | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files | |
(the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, | |
publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: |
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
IEnumerator GetSongs() { | |
songs = new List<AudioClip>(); | |
string path = Application.dataPath; | |
path = Directory.GetParent(path).ToString(); | |
path = path += "/Songs"; | |
if (Directory.Exists(path)) { | |
string[] songFilePaths = Directory.GetFiles(path); | |
foreach (string filePath in songFilePaths) { | |
string fileName = Path.GetFileNameWithoutExtension(filePath); |
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
Copyright (c) 2017 Emma Lugo | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all |
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 python3 | |
# -*- coding: utf-8 -*- | |
''' | |
Copyright (c) 2017 Emma Lugo | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |