Search found 6 matches
- Tue Jan 21, 2025 3:48 pm
- Forum: Support and Development
- Topic: How to make a barrier for a camera?
- Replies: 3
- Views: 933
Re: How to make a barrier for a camera?
Thank you all very much) You helped a lot
- Sun Jan 19, 2025 1:22 pm
- Forum: Support and Development
- Topic: How to make a barrier for a camera?
- Replies: 3
- Views: 933
How to make a barrier for a camera?
How to make a barrier for a camera in the Camera function? func.lua function NET(a, b) for i= 1,a*b do iX = iX + sizeCell table.insert(objects.net, i, {iX, iY, "1"}) if iX == sizeCell*a then iY = iY + sizeCell iX = 0 end end end function NETwall() for i, v in ipairs(objects.net) do if obje...
- Tue Jan 14, 2025 4:31 pm
- Forum: Support and Development
- Topic: How do I delete an object in bump?
- Replies: 5
- Views: 1045
Re: How do I delete an object in bump?
this is understandable, I just don't understand which item to delete. in other words, world:remove(item). For example, blocks[1] does not work
- Mon Jan 13, 2025 5:04 pm
- Forum: Support and Development
- Topic: How do I delete an object in bump?
- Replies: 5
- Views: 1045
How do I delete an object in bump?
I have code like this that adds objects from my table to world:add function addBlock(x,y,w,h) local block = {x=x, y=y, w=w, h=h} blocks[#blocks+1] = block world:add(block, x,y,w,h) end And like this when adding for i, v in ipairs(net) do if net[i][3] == true then addBlock(net[i][1]-sizeCell, net[i][...
- Sat Jan 11, 2025 6:25 pm
- Forum: Support and Development
- Topic: How to check for each side of an object separately?
- Replies: 4
- Views: 837
How to check for each side of an object separately?
I'm a newbie, and I don't really know how to check collision for each side of an object separately. Yes, there is this function, function CheckCollision(x1,y1,w1,h1, x2,y2,w2,h2) return x1 < x2+w2 and x2 < x1+w1 and y1 < y2+h2 and y2 < y1+h1 end but it detects the collision of objects in general.
- Sat Sep 28, 2024 4:15 pm
- Forum: Support and Development
- Topic: The character passes through the slab along the x coordinate
- Replies: 1
- Views: 9163
The character passes through the slab along the x coordinate
Basically the player moves through the platform at the x coordinate since I don't do anything with it. How to make sure that when the CheckCollision function detects an intersection of objects, the player returns back I did this through Google Translate so I think it won’t be very clear what I meant...