1
fork

Configure Feed

Select the types of activity you want to include in your feed.

bug: re-implement bounce_speed and grounded vars

noxe-jkl 666f4f3c b443b948

+3 -1
+3 -1
physics_engine.vhd
··· 148 148 variable vx, vy : std_logic_vector(9 downto 0); 149 149 variable px, py : std_logic_vector(10 downto 0); 150 150 variable bounced : std_logic; 151 - variable bounce_wall : std_logic; 151 + variable bounce_wall : std_logic; 152 + variable bounce_speed : std_logic_vector(9 downto 0); 153 + variable grounded : std_logic; 152 154 variable c_left, c_right, c_top, c_bot : std_logic_vector(10 downto 0); 153 155 variable c_prev_top, c_prev_bot, c_prev_left, c_prev_right : std_logic_vector(10 downto 0); 154 156 variable tcx, tcy, dcx, dcy : std_logic_vector(10 downto 0);