Nguyễn Đức Long

Results 101 comments of Nguyễn Đức Long

```ruby require 'bundler/inline' require 'minitest/spec' require 'minitest/autorun' gemfile true do source 'https://rubygems.org' gem 'activerecord', '~> 4.2.7.1' # which Active Record version? gem 'sqlite3' gem 'baby_squeel', github: 'rzane/baby_squeel' end ActiveRecord::Base.establish_connection(adapter: 'sqlite3',...

I believe this can be worked out without subquery: ```ruby # You don't seem to use `payment` so I ommit it Seat.joining { order_items.outer }.grouping { [id, order_items.orderable_id] } .selecting...

I get this error in a newly created project using `create-react-app`. Here is what `package.json` looks like: ```json "dependencies": { "@react-native-community/datetimepicker": "^6.2.0", "@react-navigation/bottom-tabs": "^6.3.2", "@react-navigation/elements": "^1.3.4", "@react-navigation/native": "^6.0.11", "@react-navigation/stack": "^6.2.2",...

Is there any problem on the [zip_encryption](https://github.com/adamhathcock/sharpcompress/tree/zip_encryption) branch? Perhaps I can look into it.

That's weird, it should be `localToWorldMatrix`. I will look into this.

I doubt that you are using the older version of VXGI. Can you try reinstalling the package again?

The voxel cascade from The Tomorrow Children does join together inside a same volume texture. I read that from their [GDC presentation slide](http://fumufumu.q-games.com/archives/TheTechnologyOfTomorrowsChildrenFinal.pdf) (the link is dead recently). The texture...

To visuallize the voxel, on the VXGI script that attached to the main camera, select "Mipmap" from Pass.

Good to know. I will find a way to implement voxel cascade soon. > Does the voxel data store opacity / occluders? Well, it stores both emittance (rgb) and opacity...