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
Finalmente, agora eu tenho tudo quase perfeito com o Sublime, só me falta mesmo é um Outline para fechar de vez. | |
Segue relação dos plugins que estou utilizando com o Sublime, bem como minhas configurações: | |
O primeiro package a instalar é o Package Control. A partir dele é possível intalar todos os outros pacotes executando Cmd+Shift+P (ou Ctrl para quem usa Linux/Windows), e buscando por "Package Control:Install Package". | |
Para instalar o Package Control, execute as instruções contidas nesta página: | |
https://packagecontrol.io/installation | |
Agora, chame o comando de instalação de pacotes e instale os seguintes pacotes. |
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
#version 450 core //lower your version if GLSL 4.5 is not supported by your GPU | |
layout (location = 0) in vec3 VertexPosition; | |
uniform mat4x4 a; | |
void main() | |
{ | |
gl_Position = a * vec4(VertexPosition, 1.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
<?php | |
// Friend and property support | |
// Read-only properties | |
abstract class PropertyVars { | |
protected $__visible = array(); | |
public function &__get($key) { | |
if(in_array($key, $this->__visible)) { | |
return $this->$key; |
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
<?php | |
// Friend and property support | |
// Read-only properties | |
abstract class PropertyVars { | |
protected $__visible = array(); | |
public function &__get($key) { | |
if(in_array($key, $this->__visible)) { | |
return $this->$key; |
OlderNewer