Search found 626 matches

by SeregaZ
Sat Jun 28, 2025 7:58 pm
Forum: Applications - Feedback and Discussion
Topic: Color Quantizing Image Editor
Replies: 37
Views: 27810

Re: Color Quantizing Image Editor

will be nice to port that code from javascript to PB. i make video manager for Sega Mega Drive/Genesis, but it eat red colors sometimes :) i can reload image from tiledpalettequant by manualy, but when i split video for a few scenes - upload and download each one is not fine.
by SeregaZ
Tue Oct 29, 2024 5:43 pm
Forum: 3D Programming
Topic: SkyBox and transparent texture for Cube.
Replies: 3
Views: 3486

Re: SkyBox and transparent texture for Cube.

so it can be apply to only transparent color ? and left nontransparent item visible ? it is animation, that run left to right part of side cube. probably that scripts is what i need... not clear, but i hope it is.

but i think need to start from small steps.
1. is any lences effect for making ...
by SeregaZ
Wed Oct 23, 2024 10:40 am
Forum: 3D Programming
Topic: SkyBox and transparent texture for Cube.
Replies: 3
Views: 3486

Re: SkyBox and transparent texture for Cube.

Ogre specialists say:

Code: Select all

use "colour_write off"
and make sure that this part is rendered first. This way you can punch through using the depth buffer.
https://ogrecave.github.io/ogre/api/lat ... otoc_md147

we no have it in PB ?
by SeregaZ
Sat Oct 19, 2024 3:30 pm
Forum: 3D Programming
Topic: SkyBox and transparent texture for Cube.
Replies: 3
Views: 3486

SkyBox and transparent texture for Cube.

I have a Cube, where sides have some transparent. and have some SkyBox. so when you look on that Cube it should be transparent and show SkyBox and it work, when this Cube is along. but what if behind of that Cube lays another Cube, with non transparent. Is any way to set for first Cube work as some ...
by SeregaZ
Mon May 27, 2024 3:29 pm
Forum: 3D Programming
Topic: MaterialBlendingMode with #PB_Material_AlphaBlend and Billboards
Replies: 2
Views: 1469

MaterialBlendingMode with #PB_Material_AlphaBlend and Billboards

It looks like Billboards + MaterialBlendingMode with #PB_Material_AlphaBlend work not really correct. when you start this code - blue billboard is first, it close to camera and cover two other billboards. but when you move camera to opposite side and grey billboard become close to camera - it become ...
by SeregaZ
Sat May 11, 2024 7:20 am
Forum: 3D Programming
Topic: Problem-question for GetMeshData()
Replies: 10
Views: 3651

Re: Problem-question for GetMeshData()

you mean it can convert file from blender to mesh, that will accept PB ?
by SeregaZ
Fri May 10, 2024 11:33 pm
Forum: 3D Programming
Topic: Problem-question for GetMeshData()
Replies: 10
Views: 3651

Re: Problem-question for GetMeshData()

Can you help to create two models with this arrays ? not clear at all what i should store in that array. i try to millions programs blender and etc, then convert them to mesh... but i seamsed i am do something wrong.

CreateCube of PB - work perfect! when i use texture - it lays exactly where i ...
by SeregaZ
Thu Apr 25, 2024 3:39 pm
Forum: Announcement
Topic: DroopyLib
Replies: 186
Views: 119862

Re: DroopyLib

it is opensource thing. you can open old version, copy code of that function, which you need and fix for new version of PB if it need.
by SeregaZ
Sun Apr 07, 2024 12:10 am
Forum: Applications - Feedback and Discussion
Topic: Color Quantizing Image Editor
Replies: 37
Views: 27810

Re: Color Quantizing Image Editor

all of that years old code serve with image paste for Sega Genesis console games.
by SeregaZ
Sat Apr 06, 2024 8:51 pm
Forum: Applications - Feedback and Discussion
Topic: Color Quantizing Image Editor
Replies: 37
Views: 27810

Re: Color Quantizing Image Editor

as i can understand this algo work with heavy colors. i mean save that colors, pixels of which is bigger count, than other. but i found something another, that works, by my opinion, better:
https://rilden.github.io/tiledpalettequant/

i hope you can see some ideas, that can apply to your code.
by SeregaZ
Thu Feb 29, 2024 7:56 am
Forum: Coding Questions
Topic: How to read pointer+offset from other process (like Cheat Engine)?
Replies: 17
Views: 6116

Re: How to read pointer+offset from other process (like Cheat Engine)?

How to get size of memory of that process? I want to make full dump as file and watch what it have, to know where to dig later...
by SeregaZ
Wed Feb 28, 2024 2:53 pm
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 2228

Re: output data organisation.

ParseCode = 3 and then 4
when it start parse inside first know address - it found new one. store into array. continue parse first until endoffunction opcode. start parse second item from array of knowing address (it was added from first parse). same happen - it found new address and add it into ...
by SeregaZ
Wed Feb 28, 2024 2:35 pm
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 2228

Re: output data organisation.

When you click on the Button "hotdiasm"
it emulate select some raw byte and count it as some address of code and try to parse from it. that is why i make restart format again from begining. it can found some new addresses inside like reqursive. it means all labels and end of line and strings of ...
by SeregaZ
Wed Feb 28, 2024 11:13 am
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 2228

Re: output data organisation.

Procedure ParseCode(sz.l)
For i = 1 To globalarraysz ; For I = 0 To 6.000.001 Why?
because that globalarraysz is variable. when it pass first time - it can get new addresses. that addresses will be add at the end of order and globalarraysz value is encrease until For is still running. and it is ...