Skip to content
View cenullum's full-sized avatar

Organizations

@WeaselGames
Block or Report

Block or report cenullum

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Voxelizer-For-Godot-Engine Voxelizer-For-Godot-Engine Public

    A demo of voxelation which is make 3d mesh from 2d sprites

    GDScript 10 1

  2. Godot Engine Circle with Outline Col... Godot Engine Circle with Outline Color Shader
    1
    shader_type canvas_item;
    2
    uniform vec4 outline_color:hint_color = vec4(1.0,1.0,0.0,1.0);
    3
    uniform float inner_circle=0.45;
    4
    uniform float outer_circle=0.5;
    5
    
                  
  3. Rectangle Hole Godot Engine Shader Rectangle Hole Godot Engine Shader
    1
    shader_type canvas_item;
    2
    
                  
    3
    uniform vec2 size;
    4
    uniform vec2 scale;
    5
    uniform vec2 position;
  4. Javascript Infinite Loop with Delta ... Javascript Infinite Loop with Delta Time
    1
    
                  
    2
    var lastUpdate = Date.now();
    3
    var lastFixed = Date.now();
    4
    var fixedTimer=0.02;
    5