Git Product home page Git Product logo

Comments (7)

upsonp avatar upsonp commented on August 25, 2024

Add layers to the IsoMap object

from godot_series.

upsonp avatar upsonp commented on August 25, 2024

update the character's z_index on the IsoMap

from godot_series.

upsonp avatar upsonp commented on August 25, 2024

Rename CharacterBody2D script to IsoPlayer

from godot_series.

upsonp avatar upsonp commented on August 25, 2024

Swap order of acceleration/deceleration checks in the target_position move statement

from godot_series.

upsonp avatar upsonp commented on August 25, 2024

Use if direction != Vector2i.ZERO and target_position == Vector2.ZERO: when testing if a new target_position needs to be calculated.

from godot_series.

upsonp avatar upsonp commented on August 25, 2024

In Make chunk allow a chunk to have a 3rd dimension:

	chunk[3][3] = Array()
	chunk[3][3].push_back(1)
	chunk[3][3].push_back(2)

Then modify draw chunk

func draw_chunk(chunk_func: Callable):
	var chunk = chunk_func.call()
	
	for x in range(len(chunk)):
		for y in range(len(chunk[x])):
			if typeof(chunk[x][y]) == TYPE_ARRAY:
				for z in range(len(chunk[x][y])):
					set_cell(chunk[x][y][z], Vector2i(x, y) + (ilayer_offset*chunk[x][y][z]), 0, Vector2(0, 0), 0)
			else:
				set_cell(chunk[x][y], Vector2i(x, y) + (ilayer_offset*chunk[x][y]), 0, Vector2(0, 0), 0)

from godot_series.

upsonp avatar upsonp commented on August 25, 2024

Enable y_sort on the TileMap

from godot_series.

Related Issues (11)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.