- Rewrite the texture loading entirely
- Support CubicEnvironmaps with textureCube
- Basic lighting support
- Finish the final few blend modes
- Add fog support to the shader
- Handle the piggybacks for lightmaps
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
(function() { | |
var monthInputs = document.querySelectorAll('input[type="month"]'), | |
checkDateInput = document.createElement('input'), | |
dateSupported = false, | |
months = [], | |
lang = document.documentElement.lang || navigator.language, | |
DEFAULT_SPAN = 5; | |
if (monthInputs[0].type === 'month') { | |
// browser supports month input; no need for polyfill |
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
// | |
// UIColor.swift | |
// previously Color+HexAndCSSColorNames.swift | |
// | |
// Created by Norman Basham on 12/8/15. | |
// Copyright ©2018 Black Labs. All rights reserved. | |
// | |
// 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 |
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) 2013 Polychrom Pty Ltd | |
// | |
// This program is licensed under the 3-clause "Modified" BSD license, | |
// see LICENSE file for full definition. | |
package com.polychrom.examples; | |
import java.util.concurrent.ExecutorService; | |
import android.app.Activity; |
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
1 2001-05-08 Paulg Added version Number | |
1 2001-05-08 Paulg Added version Number | |
2 2001-05-09 mcn Changed color components of drawableSpans | |
2 2001-05-11 mf Changed sortable mesh format by 2 bytes. | |
0 2001-05-11 mf Dropped back to zero on Major Version change | |
3 2001-05-14 Paulg Index files Location is used for ReadConfig at Client Startup, RoomLoc added to Index | |
4 2001-05-21 matt Fixed errant bounding types for physicals (old bad codes will choke) |
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 python | |
import sys,re,time,os | |
import urllib,urllib2,cookielib | |
import xml.dom.minidom | |
from ID3 import * | |
try: | |
import json | |
except ImportError,e: |
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 hasFlash = false; | |
if (navigator.plugins && navigator.plugins.length) { | |
if (navigator.plugins['Shockwave Flash']) { | |
hasFlash = true; | |
} | |
} else if (navigator.mimeTypes && navigator.mimeTypes.length) { | |
var mimeType = navigator.mimeTypes['application/x-shockwave-flash']; | |
hasFlash = mimeType && mimeType.enabledPlugin; | |
} else { | |
try { |